Make the core ajax calls use the router

This commit is contained in:
Bart Visscher 2012-10-02 21:57:51 +02:00
parent bb136b9adf
commit de1bfe9d6b
9 changed files with 22 additions and 10 deletions

View file

@ -5,7 +5,6 @@
* See the COPYING-README file. * See the COPYING-README file.
*/ */
require_once "../../lib/base.php";
OC_Util::checkAdminUser(); OC_Util::checkAdminUser();
OCP\JSON::callCheck(); OCP\JSON::callCheck();

View file

@ -26,7 +26,6 @@
* @return json: success/error state indicator including a fresh request token * @return json: success/error state indicator including a fresh request token
* @author Christian Reiner * @author Christian Reiner
*/ */
require_once '../../lib/base.php';
// don't load apps or filesystem for this task // don't load apps or filesystem for this task
$RUNTIME_NOAPPS = TRUE; $RUNTIME_NOAPPS = TRUE;

View file

@ -18,7 +18,6 @@
* You should have received a copy of the GNU Affero General Public * You should have received a copy of the GNU Affero General Public
* License along with this library. If not, see <http://www.gnu.org/licenses/>. * License along with this library. If not, see <http://www.gnu.org/licenses/>.
*/ */
require_once '../../lib/base.php';
OC_JSON::checkLoggedIn(); OC_JSON::checkLoggedIn();
OCP\JSON::callCheck(); OCP\JSON::callCheck();

View file

@ -21,9 +21,6 @@
* *
*/ */
// Init owncloud
require_once '../../lib/base.php';
$app = $_POST["app"]; $app = $_POST["app"];
$l = OC_L10N::get( $app ); $l = OC_L10N::get( $app );

View file

@ -14,7 +14,6 @@ function debug($msg) {
OC_Log::write('core', 'ajax/vcategories/add.php: '.$msg, OC_Log::DEBUG); OC_Log::write('core', 'ajax/vcategories/add.php: '.$msg, OC_Log::DEBUG);
} }
require_once '../../../lib/base.php';
OC_JSON::checkLoggedIn(); OC_JSON::checkLoggedIn();
$category = isset($_GET['category'])?strip_tags($_GET['category']):null; $category = isset($_GET['category'])?strip_tags($_GET['category']):null;
$app = isset($_GET['app'])?$_GET['app']:null; $app = isset($_GET['app'])?$_GET['app']:null;

View file

@ -15,7 +15,6 @@ function debug($msg) {
OC_Log::write('core', 'ajax/vcategories/delete.php: '.$msg, OC_Log::DEBUG); OC_Log::write('core', 'ajax/vcategories/delete.php: '.$msg, OC_Log::DEBUG);
} }
require_once '../../../lib/base.php';
OC_JSON::checkLoggedIn(); OC_JSON::checkLoggedIn();
$app = isset($_POST['app'])?$_POST['app']:null; $app = isset($_POST['app'])?$_POST['app']:null;
$categories = isset($_POST['categories'])?$_POST['categories']:null; $categories = isset($_POST['categories'])?$_POST['categories']:null;

View file

@ -15,7 +15,6 @@ function debug($msg) {
OC_Log::write('core', 'ajax/vcategories/edit.php: '.$msg, OC_Log::DEBUG); OC_Log::write('core', 'ajax/vcategories/edit.php: '.$msg, OC_Log::DEBUG);
} }
require_once '../../../lib/base.php';
OC_JSON::checkLoggedIn(); OC_JSON::checkLoggedIn();
$app = isset($_GET['app'])?$_GET['app']:null; $app = isset($_GET['app'])?$_GET['app']:null;

View file

@ -88,7 +88,7 @@ var OC={
} }
link+=file; link+=file;
}else{ }else{
if (app == 'settings' && type == 'ajax') { if ((app == 'settings' || app == 'core') && type == 'ajax') {
link+='/index.php/'; link+='/index.php/';
} }
else { else {

View file

@ -8,6 +8,27 @@
require_once('settings/routes.php'); require_once('settings/routes.php');
// Core ajax actions
// AppConfig
$this->create('core_ajax_appconfig', '/core/ajax/appconfig.php')
->actionInclude('core/ajax/appconfig.php');
// RequestToken
$this->create('core_ajax_requesttoken', '/core/ajax/requesttoken.php')
->actionInclude('core/ajax/requesttoken.php');
// Share
$this->create('core_ajax_share', '/core/ajax/share.php')
->actionInclude('core/ajax/share.php');
// Translations
$this->create('core_ajax_translations', '/core/ajax/translations.php')
->actionInclude('core/ajax/translations.php');
// VCategories
$this->create('core_ajax_vcategories_add', '/core/ajax/vcategories/add.php')
->actionInclude('core/ajax/vcategories/add.php');
$this->create('core_ajax_vcategories_delete', '/core/ajax/vcategories/delete.php')
->actionInclude('core/ajax/vcategories/delete.php');
$this->create('core_ajax_vcategories_edit', '/core/ajax/vcategories/edit.php')
->actionInclude('core/ajax/vcategories/edit.php');
// Not specifically routed // Not specifically routed
$this->create('app_css', '/apps/{app}/{file}') $this->create('app_css', '/apps/{app}/{file}')
->requirements(array('file' => '.*.css')) ->requirements(array('file' => '.*.css'))