commit
56367d19ac
|
@ -1,129 +0,0 @@
|
||||||
<?php
|
|
||||||
/**
|
|
||||||
* @copyright Copyright (c) 2016, ownCloud, Inc.
|
|
||||||
*
|
|
||||||
* @author Morris Jobke <hey@morrisjobke.de>
|
|
||||||
* @author Thomas Tanghus <thomas@tanghus.net>
|
|
||||||
*
|
|
||||||
* @license AGPL-3.0
|
|
||||||
*
|
|
||||||
* This code is free software: you can redistribute it and/or modify
|
|
||||||
* it under the terms of the GNU Affero General Public License, version 3,
|
|
||||||
* as published by the Free Software Foundation.
|
|
||||||
*
|
|
||||||
* This program is distributed in the hope that it will be useful,
|
|
||||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
||||||
* GNU Affero General Public License for more details.
|
|
||||||
*
|
|
||||||
* You should have received a copy of the GNU Affero General Public License, version 3,
|
|
||||||
* along with this program. If not, see <http://www.gnu.org/licenses/>
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
|
|
||||||
namespace OC\Core\Tags;
|
|
||||||
|
|
||||||
class Controller {
|
|
||||||
protected static function getTagger($type) {
|
|
||||||
\OC_JSON::checkLoggedIn();
|
|
||||||
\OC_JSON::callCheck();
|
|
||||||
|
|
||||||
try {
|
|
||||||
$tagger = \OC::$server->getTagManager()->load($type);
|
|
||||||
return $tagger;
|
|
||||||
} catch(\Exception $e) {
|
|
||||||
\OCP\Util::writeLog('core', __METHOD__ . ' Exception: ' . $e->getMessage(), \OCP\Util::ERROR);
|
|
||||||
$l = new \OC_L10n('core');
|
|
||||||
\OC_JSON::error(array('message'=> $l->t('Error loading tags')));
|
|
||||||
exit;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
public static function getTags($args) {
|
|
||||||
$tagger = self::getTagger($args['type']);
|
|
||||||
\OC_JSON::success(array('tags'=> $tagger->getTags()));
|
|
||||||
}
|
|
||||||
|
|
||||||
public static function getFavorites($args) {
|
|
||||||
$tagger = self::getTagger($args['type']);
|
|
||||||
\OC_JSON::success(array('ids'=> $tagger->getFavorites()));
|
|
||||||
}
|
|
||||||
|
|
||||||
public static function getIdsForTag($args) {
|
|
||||||
$tagger = self::getTagger($args['type']);
|
|
||||||
\OC_JSON::success(array('ids'=> $tagger->getIdsForTag($_GET['tag'])));
|
|
||||||
}
|
|
||||||
|
|
||||||
public static function addTag($args) {
|
|
||||||
$tagger = self::getTagger($args['type']);
|
|
||||||
|
|
||||||
$id = $tagger->add(strip_tags($_POST['tag']));
|
|
||||||
if($id === false) {
|
|
||||||
$l = new \OC_L10n('core');
|
|
||||||
\OC_JSON::error(array('message'=> $l->t('Tag already exists')));
|
|
||||||
} else {
|
|
||||||
\OC_JSON::success(array('id'=> $id));
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
public static function deleteTags($args) {
|
|
||||||
$tags = $_POST['tags'];
|
|
||||||
if(!is_array($tags)) {
|
|
||||||
$tags = array($tags);
|
|
||||||
}
|
|
||||||
|
|
||||||
$tagger = self::getTagger($args['type']);
|
|
||||||
|
|
||||||
if(!$tagger->delete($tags)) {
|
|
||||||
$l = new \OC_L10n('core');
|
|
||||||
\OC_JSON::error(array('message'=> $l->t('Error deleting tag(s)')));
|
|
||||||
} else {
|
|
||||||
\OC_JSON::success();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
public static function tagAs($args) {
|
|
||||||
$tagger = self::getTagger($args['type']);
|
|
||||||
|
|
||||||
if(!$tagger->tagAs($args['id'], $_POST['tag'])) {
|
|
||||||
$l = new \OC_L10n('core');
|
|
||||||
\OC_JSON::error(array('message'=> $l->t('Error tagging')));
|
|
||||||
} else {
|
|
||||||
\OC_JSON::success();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
public static function unTag($args) {
|
|
||||||
$tagger = self::getTagger($args['type']);
|
|
||||||
|
|
||||||
if(!$tagger->unTag($args['id'], $_POST['tag'])) {
|
|
||||||
$l = new \OC_L10n('core');
|
|
||||||
\OC_JSON::error(array('message'=> $l->t('Error untagging')));
|
|
||||||
} else {
|
|
||||||
\OC_JSON::success();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
public static function favorite($args) {
|
|
||||||
$tagger = self::getTagger($args['type']);
|
|
||||||
|
|
||||||
if(!$tagger->addToFavorites($args['id'])) {
|
|
||||||
$l = new \OC_L10n('core');
|
|
||||||
\OC_JSON::error(array('message'=> $l->t('Error favoriting')));
|
|
||||||
} else {
|
|
||||||
\OC_JSON::success();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
public static function unFavorite($args) {
|
|
||||||
$tagger = self::getTagger($args['type']);
|
|
||||||
|
|
||||||
if(!$tagger->removeFromFavorites($args['id'])) {
|
|
||||||
$l = new \OC_L10n('core');
|
|
||||||
\OC_JSON::error(array('message'=> $l->t('Error unfavoriting')));
|
|
||||||
} else {
|
|
||||||
\OC_JSON::success();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
|
@ -70,43 +70,6 @@ $this->create('search_ajax_search', '/core/search')
|
||||||
// AppConfig
|
// AppConfig
|
||||||
$this->create('core_ajax_appconfig', '/core/ajax/appconfig.php')
|
$this->create('core_ajax_appconfig', '/core/ajax/appconfig.php')
|
||||||
->actionInclude('core/ajax/appconfig.php');
|
->actionInclude('core/ajax/appconfig.php');
|
||||||
// Tags
|
|
||||||
$this->create('core_tags_tags', '/tags/{type}')
|
|
||||||
->get()
|
|
||||||
->action('OC\Core\Tags\Controller', 'getTags')
|
|
||||||
->requirements(array('type'));
|
|
||||||
$this->create('core_tags_favorites', '/tags/{type}/favorites')
|
|
||||||
->get()
|
|
||||||
->action('OC\Core\Tags\Controller', 'getFavorites')
|
|
||||||
->requirements(array('type'));
|
|
||||||
$this->create('core_tags_ids_for_tag', '/tags/{type}/ids')
|
|
||||||
->get()
|
|
||||||
->action('OC\Core\Tags\Controller', 'getIdsForTag')
|
|
||||||
->requirements(array('type'));
|
|
||||||
$this->create('core_tags_favorite', '/tags/{type}/favorite/{id}/')
|
|
||||||
->post()
|
|
||||||
->action('OC\Core\Tags\Controller', 'favorite')
|
|
||||||
->requirements(array('type', 'id'));
|
|
||||||
$this->create('core_tags_unfavorite', '/tags/{type}/unfavorite/{id}/')
|
|
||||||
->post()
|
|
||||||
->action('OC\Core\Tags\Controller', 'unFavorite')
|
|
||||||
->requirements(array('type', 'id'));
|
|
||||||
$this->create('core_tags_tag', '/tags/{type}/tag/{id}/')
|
|
||||||
->post()
|
|
||||||
->action('OC\Core\Tags\Controller', 'tagAs')
|
|
||||||
->requirements(array('type', 'id'));
|
|
||||||
$this->create('core_tags_untag', '/tags/{type}/untag/{id}/')
|
|
||||||
->post()
|
|
||||||
->action('OC\Core\Tags\Controller', 'unTag')
|
|
||||||
->requirements(array('type', 'id'));
|
|
||||||
$this->create('core_tags_add', '/tags/{type}/add')
|
|
||||||
->post()
|
|
||||||
->action('OC\Core\Tags\Controller', 'addTag')
|
|
||||||
->requirements(array('type'));
|
|
||||||
$this->create('core_tags_delete', '/tags/{type}/delete')
|
|
||||||
->post()
|
|
||||||
->action('OC\Core\Tags\Controller', 'deleteTags')
|
|
||||||
->requirements(array('type'));
|
|
||||||
// oC JS config
|
// oC JS config
|
||||||
$this->create('js_config', '/core/js/oc.js')
|
$this->create('js_config', '/core/js/oc.js')
|
||||||
->actionInclude('core/js/config.php');
|
->actionInclude('core/js/config.php');
|
||||||
|
|
|
@ -396,7 +396,6 @@ return array(
|
||||||
'OC\\Core\\Controller\\TwoFactorChallengeController' => $baseDir . '/core/Controller/TwoFactorChallengeController.php',
|
'OC\\Core\\Controller\\TwoFactorChallengeController' => $baseDir . '/core/Controller/TwoFactorChallengeController.php',
|
||||||
'OC\\Core\\Controller\\UserController' => $baseDir . '/core/Controller/UserController.php',
|
'OC\\Core\\Controller\\UserController' => $baseDir . '/core/Controller/UserController.php',
|
||||||
'OC\\Core\\Middleware\\TwoFactorMiddleware' => $baseDir . '/core/Middleware/TwoFactorMiddleware.php',
|
'OC\\Core\\Middleware\\TwoFactorMiddleware' => $baseDir . '/core/Middleware/TwoFactorMiddleware.php',
|
||||||
'OC\\Core\\Tags\\Controller' => $baseDir . '/core/Tags/Controller.php',
|
|
||||||
'OC\\DB\\Adapter' => $baseDir . '/lib/private/DB/Adapter.php',
|
'OC\\DB\\Adapter' => $baseDir . '/lib/private/DB/Adapter.php',
|
||||||
'OC\\DB\\AdapterMySQL' => $baseDir . '/lib/private/DB/AdapterMySQL.php',
|
'OC\\DB\\AdapterMySQL' => $baseDir . '/lib/private/DB/AdapterMySQL.php',
|
||||||
'OC\\DB\\AdapterOCI8' => $baseDir . '/lib/private/DB/AdapterOCI8.php',
|
'OC\\DB\\AdapterOCI8' => $baseDir . '/lib/private/DB/AdapterOCI8.php',
|
||||||
|
|
|
@ -426,7 +426,6 @@ class ComposerStaticInit53792487c5a8370acc0b06b1a864ff4c
|
||||||
'OC\\Core\\Controller\\TwoFactorChallengeController' => __DIR__ . '/../../..' . '/core/Controller/TwoFactorChallengeController.php',
|
'OC\\Core\\Controller\\TwoFactorChallengeController' => __DIR__ . '/../../..' . '/core/Controller/TwoFactorChallengeController.php',
|
||||||
'OC\\Core\\Controller\\UserController' => __DIR__ . '/../../..' . '/core/Controller/UserController.php',
|
'OC\\Core\\Controller\\UserController' => __DIR__ . '/../../..' . '/core/Controller/UserController.php',
|
||||||
'OC\\Core\\Middleware\\TwoFactorMiddleware' => __DIR__ . '/../../..' . '/core/Middleware/TwoFactorMiddleware.php',
|
'OC\\Core\\Middleware\\TwoFactorMiddleware' => __DIR__ . '/../../..' . '/core/Middleware/TwoFactorMiddleware.php',
|
||||||
'OC\\Core\\Tags\\Controller' => __DIR__ . '/../../..' . '/core/Tags/Controller.php',
|
|
||||||
'OC\\DB\\Adapter' => __DIR__ . '/../../..' . '/lib/private/DB/Adapter.php',
|
'OC\\DB\\Adapter' => __DIR__ . '/../../..' . '/lib/private/DB/Adapter.php',
|
||||||
'OC\\DB\\AdapterMySQL' => __DIR__ . '/../../..' . '/lib/private/DB/AdapterMySQL.php',
|
'OC\\DB\\AdapterMySQL' => __DIR__ . '/../../..' . '/lib/private/DB/AdapterMySQL.php',
|
||||||
'OC\\DB\\AdapterOCI8' => __DIR__ . '/../../..' . '/lib/private/DB/AdapterOCI8.php',
|
'OC\\DB\\AdapterOCI8' => __DIR__ . '/../../..' . '/lib/private/DB/AdapterOCI8.php',
|
||||||
|
|
Loading…
Reference in New Issue