ISearchOrder.php 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. <?php
  2. /**
  3. * @copyright Copyright (c) 2017 Robin Appelman <robin@icewind.nl>
  4. *
  5. * @author Christoph Wurst <christoph@winzerhof-wurst.at>
  6. * @author Maxence Lange <maxence@artificial-owl.com>
  7. * @author Robin Appelman <robin@icewind.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 OCP\Files\Search;
  26. use OCP\Files\FileInfo;
  27. /**
  28. * @since 12.0.0
  29. */
  30. interface ISearchOrder {
  31. public const DIRECTION_ASCENDING = 'asc';
  32. public const DIRECTION_DESCENDING = 'desc';
  33. /**
  34. * The direction to sort in, either ISearchOrder::DIRECTION_ASCENDING or ISearchOrder::DIRECTION_DESCENDING
  35. *
  36. * @return string
  37. * @since 12.0.0
  38. */
  39. public function getDirection(): string;
  40. /**
  41. * The field to sort on
  42. *
  43. * @return string
  44. * @since 12.0.0
  45. */
  46. public function getField(): string;
  47. /**
  48. * extra means data are not related to the main files table
  49. *
  50. * @return string
  51. * @since 28.0.0
  52. */
  53. public function getExtra(): string;
  54. /**
  55. * Apply the sorting on 2 FileInfo objects
  56. *
  57. * @param FileInfo $a
  58. * @param FileInfo $b
  59. * @return int -1 if $a < $b, 0 if $a = $b, 1 if $a > $b (for ascending, reverse for descending)
  60. * @since 22.0.0
  61. */
  62. public function sortFileInfo(FileInfo $a, FileInfo $b): int;
  63. }