PageRenderTime 47ms CodeModel.GetById 23ms RepoModel.GetById 0ms app.codeStats 0ms

/core/ajax/vcategories/add.php

https://github.com/jlgg/simple_trash
PHP | 42 lines | 28 code | 8 blank | 6 comment | 4 complexity | 7ae693bfc4dd8e1e2497fcb861c5a196 MD5 | raw file
Possible License(s): AGPL-3.0, AGPL-1.0, MPL-2.0-no-copyleft-exception
  1. <?php
  2. /**
  3. * Copyright (c) 2012 Thomas Tanghus <thomas@tanghus.net>
  4. * This file is licensed under the Affero General Public License version 3 or
  5. * later.
  6. * See the COPYING-README file.
  7. */
  8. function bailOut($msg) {
  9. OC_JSON::error(array('data' => array('message' => $msg)));
  10. OC_Log::write('core', 'ajax/vcategories/add.php: '.$msg, OC_Log::DEBUG);
  11. exit();
  12. }
  13. function debug($msg) {
  14. OC_Log::write('core', 'ajax/vcategories/add.php: '.$msg, OC_Log::DEBUG);
  15. }
  16. OCP\JSON::checkLoggedIn();
  17. OCP\JSON::callCheck();
  18. $l = OC_L10N::get('core');
  19. $category = isset($_POST['category']) ? strip_tags($_POST['category']) : null;
  20. $type = isset($_POST['type']) ? $_POST['type'] : null;
  21. if(is_null($type)) {
  22. bailOut($l->t('Category type not provided.'));
  23. }
  24. if(is_null($category)) {
  25. bailOut($l->t('No category to add?'));
  26. }
  27. debug(print_r($category, true));
  28. $categories = new OC_VCategories($type);
  29. if($categories->hasCategory($category)) {
  30. bailOut(OC_Contacts_App::$l10n->t('This category already exists: '.$category));
  31. } else {
  32. $categories->add($category, true);
  33. }
  34. OC_JSON::success(array('data' => array('categories'=>$categories->categories())));