Repos.php 7.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221
  1. <?php
  2. namespace Gogs\API\Request {
  3. /**
  4. * Repos is a collection of repos.
  5. *
  6. * @author Joachim M. Giaever (joachim[]giaever.org)
  7. * @version 0.1.3
  8. */
  9. final class Repos extends Collection {
  10. const SORT_UPDATED = Collection::SORT_INDEX << 1;
  11. const SORT_CREATED = Collection::SORT_INDEX << 2;
  12. const SORT_OWNER = Collection::SORT_INDEX << 3;
  13. protected $owner;
  14. /**
  15. * Initialize a repos collection
  16. *
  17. * If owner is not set it will query the whole
  18. * repo archive on Gogs.
  19. *
  20. * @param string $api_url The api-url
  21. * @param string $api_token The api-token
  22. * @param User $owner The owner of the collection
  23. */
  24. public function __construct(string $api_url, string $api_token, User $owner = null) {
  25. parent::__construct($api_url, $api_token);
  26. $this->owner = $owner;
  27. }
  28. /**
  29. * @see Base
  30. */
  31. protected function set_scope(string $method) {
  32. switch ($method) {
  33. case "get":
  34. case "load":
  35. if ($this->owner instanceof Org)
  36. $this->scope = "/orgs/" . $this->owner->username . "/repos";
  37. else
  38. $this->scope = ($this->owner == null || $this->owner->authenticated() ? "/user" : "/users/" . $this->owner->username ) . "/repos";
  39. break;
  40. case "search":
  41. $this->scope = "/repos/search";
  42. break;
  43. default:
  44. return false;
  45. }
  46. return true;
  47. }
  48. /**
  49. * Get a single repository by name.
  50. *
  51. * If the `owner` is set, the name can be just the
  52. * actual name of the repo
  53. *
  54. * @param string $name
  55. * @return
  56. */
  57. public function get(string $name) {
  58. if (isset($this->owner) && strpos($name, "/") === false )
  59. $name = sprintf("%s/%s", $this->owner->username, $name);
  60. if ($repo = $this->by_key($name))
  61. return $repo;
  62. $owner = !empty($this->owner) ? $this->owner : (
  63. ($pos = strpos($name, "/")) !== false ?
  64. new User($this->url, $this->token, substr($name, 0, $pos)) : null
  65. );
  66. $repo = (new Repo(
  67. $this->url,
  68. $this->token,
  69. $owner,
  70. ($pos = strpos($name, "/")) ? substr($name, $pos + 1) : $name
  71. ))->load();
  72. $this->add($repo, $repo->full_name);
  73. return $repo;
  74. }
  75. /**
  76. * @see Collection
  77. */
  78. public function create(...$args) {
  79. $repo = new Repo($this->url, $this->token, $this->owner);
  80. if (count($args) > 0) {
  81. $repo->create(...$args);
  82. $this->add($repo, $repo->full_name);
  83. }
  84. return $repo;
  85. }
  86. /**
  87. * Searches for a repo.
  88. *
  89. * If the owner is specified the search will be
  90. * limited to the actual user.
  91. *
  92. * Params can be an array of
  93. * ```php
  94. * $repos->search(array(
  95. * "name" => "name", // alt. "q". required
  96. * "limit" => 10, // not required, default: 10
  97. * ));
  98. * ```
  99. *
  100. * If repositories is allready loaded it will do a match
  101. * on the existing collection.
  102. *
  103. * @see Base
  104. * @see Collection
  105. * @throws Exception\SearchParamException on missing parameters
  106. * @return Repos
  107. */
  108. public function search(array $params = array(), bool $strict = false) {
  109. if (!isset($params["name"]) && !isset($params["q"]))
  110. throw new Exception\SearchParamException("Missing param <name>|<q>");
  111. if (isset($params["name"])) {
  112. $params["q"] = $params["name"];
  113. unset($params["name"]);
  114. }
  115. if (!isset($params["uid"]) || isset($this->owner)) {
  116. if (!isset($this->owner->id))
  117. $this->owner->load();
  118. $params["uid"] = isset($this->owner) ? $this->owner->id : 0;
  119. }
  120. if (!isset($params["limit"]))
  121. $params["limit"] = 10;
  122. $repos = new Repos($this->url, $this->token, $this->owner);
  123. if ($this->loaded) {
  124. foreach($this->all() as $key => $repo) {
  125. $search = $repo->search(array(
  126. "name" => $params["q"],
  127. "description" => $params["q"]
  128. ),
  129. $strict
  130. );
  131. if ($search)
  132. $repos->add($repo, $key);
  133. if ($repos->len() == $params["limit"])
  134. break;
  135. }
  136. } else {
  137. $this->set_scope("search");
  138. $jenc = $this->method_get($params);
  139. $jdec = $this->json_decode($jenc);
  140. foreach($this->json_set_property($jdec) as $key)
  141. $repos->add($this->by_key($key), $key);
  142. }
  143. return $repos;
  144. }
  145. /**
  146. * Sort repos by `method`.
  147. *
  148. * Valid methods:
  149. *
  150. * * SORT_UPDATED: Sort on `updated_at` value
  151. * * SORT_CREATED: Sort on `created_at` value
  152. * * SORT_OWNER: Sort on `owner` (organization repos etc may appear)
  153. *
  154. * @param int $flag Defines sorting algorithm to use
  155. * @param bool $asc Ascending order
  156. * @return \Gogs\Lib\Collection
  157. */
  158. public function sort_by(int $flag = Collection::SORT_INDEX, bool $asc = false) {
  159. switch ($flag) {
  160. case self::SORT_CREATED:
  161. return ($sort = $this->sort(function(Repo $a, Repo $b) {
  162. $adate = new \DateTime($a->created_at);
  163. $bdate = new \DateTime($b->created_at);
  164. return ($adate == $bdate ? 0 : ($adate > $bdate ? 1 : -1));
  165. })) ? ($asc ? $sort->reverse() : $sort) : false;
  166. case self::SORT_UPDATED:
  167. return ($sort = $this->sort(function(Repo $a, Repo $b) {
  168. $adate = new \DateTime($a->updated_at);
  169. $bdate = new \DateTime($b->updated_at);
  170. return ($adate == $bdate ? 0 : ($adate > $bdate ? 1 : -1));
  171. })) ? ($asc ? $sort->reverse() : $sort) : false;
  172. case self::SORT_OWNER:
  173. return ($sort = $this->sort(function(Repo $a, Repo $b) {
  174. return strcmp($a->owner->username, $b->owner->username);
  175. })) ? ($asc ? $sort->reverse() : $sort) : false;
  176. default:
  177. return ($sort = $this->sort("ksort")) ? ($asc ? $sort->reverse() : $sort) : false;
  178. }
  179. }
  180. /**
  181. * @see Collection
  182. */
  183. protected function add_object(\stdClass $obj) {
  184. $repo = new Repo($this->url, $this->token);
  185. $repo->json_set_property($obj);
  186. return $this->add($repo, $repo->full_name);
  187. }
  188. }
  189. }