Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

ContactsMenuController.php 2.2KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. <?php
  2. /**
  3. * @copyright 2017 Christoph Wurst <christoph@winzerhof-wurst.at>
  4. *
  5. * @author Christoph Wurst <christoph@owncloud.com>
  6. * @author Georg Ehrke <oc.list@georgehrke.com>
  7. * @author Roeland Jago Douma <roeland@famdouma.nl>
  8. *
  9. * @license GNU AGPL version 3 or any later version
  10. *
  11. * This program is free software: you can redistribute it and/or modify
  12. * it under the terms of the GNU Affero General Public License as
  13. * published by the Free Software Foundation, either version 3 of the
  14. * License, or (at your option) any later version.
  15. *
  16. * This program is distributed in the hope that it will be useful,
  17. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  18. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  19. * GNU Affero General Public License for more details.
  20. *
  21. * You should have received a copy of the GNU Affero General Public License
  22. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  23. *
  24. */
  25. namespace OC\Core\Controller;
  26. use OC\Contacts\ContactsMenu\Manager;
  27. use OCP\AppFramework\Controller;
  28. use OCP\AppFramework\Http;
  29. use OCP\AppFramework\Http\JSONResponse;
  30. use OCP\IRequest;
  31. use OCP\IUserSession;
  32. class ContactsMenuController extends Controller {
  33. /** @var Manager */
  34. private $manager;
  35. /** @var IUserSession */
  36. private $userSession;
  37. /**
  38. * @param IRequest $request
  39. * @param IUserSession $userSession
  40. * @param Manager $manager
  41. */
  42. public function __construct(IRequest $request, IUserSession $userSession, Manager $manager) {
  43. parent::__construct('core', $request);
  44. $this->userSession = $userSession;
  45. $this->manager = $manager;
  46. }
  47. /**
  48. * @NoAdminRequired
  49. *
  50. * @param string|null filter
  51. * @return \JsonSerializable[]
  52. */
  53. public function index($filter = null) {
  54. return $this->manager->getEntries($this->userSession->getUser(), $filter);
  55. }
  56. /**
  57. * @NoAdminRequired
  58. *
  59. * @param integer $shareType
  60. * @param string $shareWith
  61. * @return JSONResponse|\JsonSerializable
  62. */
  63. public function findOne($shareType, $shareWith) {
  64. $contact = $this->manager->findOne($this->userSession->getUser(), $shareType, $shareWith);
  65. if ($contact) {
  66. return $contact;
  67. }
  68. return new JSONResponse([], Http::STATUS_NOT_FOUND);
  69. }
  70. }