Repos.php 8.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298
  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. * @return Repo
  78. */
  79. public function create(...$args) {
  80. $repo = new Repo($this->url, $this->token, $this->owner);
  81. if (count($args) > 0) {
  82. $repo->create(...$args);
  83. $this->add($repo, $repo->full_name);
  84. }
  85. return $repo;
  86. }
  87. /**
  88. * Searches for a repo.
  89. *
  90. * If the owner is specified the search will be
  91. * limited to the actual user.
  92. *
  93. * Params can be an array of
  94. * ```php
  95. * $repos->search(array(
  96. * "name" => "name", // alt. "q". required
  97. * "limit" => 10, // not required, default: 10
  98. * ));
  99. * ```
  100. *
  101. * If repositories is allready loaded it will do a match
  102. * on the existing collection.
  103. *
  104. * @see Base
  105. * @see Collection
  106. * @throws Exception\SearchParamException on missing parameters
  107. * @return Repos
  108. */
  109. public function search(array $params = array(), bool $strict = false) {
  110. if (!isset($params["name"]) && !isset($params["q"]))
  111. throw new Exception\SearchParamException("Missing param <name>|<q>");
  112. if (isset($params["name"])) {
  113. $params["q"] = $params["name"];
  114. unset($params["name"]);
  115. }
  116. if (!isset($params["uid"]) || isset($this->owner)) {
  117. if (!isset($this->owner->id))
  118. $this->owner->load();
  119. $params["uid"] = isset($this->owner) ? $this->owner->id : 0;
  120. }
  121. if (!isset($params["limit"]))
  122. $params["limit"] = 10;
  123. $repos = new Repos($this->url, $this->token, $this->owner);
  124. if ($this->loaded) {
  125. foreach($this->all() as $key => $repo) {
  126. $search = $repo->search(array(
  127. "name" => $params["q"],
  128. "description" => $params["q"]
  129. ),
  130. $strict
  131. );
  132. if ($search)
  133. $repos->add($repo, $key);
  134. if ($repos->len() == $params["limit"])
  135. break;
  136. }
  137. } else {
  138. $this->set_scope("search");
  139. $jenc = $this->method_get($params);
  140. $jdec = $this->json_decode($jenc);
  141. foreach($this->json_set_property($jdec) as $key)
  142. $repos->add($this->by_key($key), $key);
  143. }
  144. return $repos;
  145. }
  146. /**
  147. * Sort repos by `method`.
  148. *
  149. * Valid methods:
  150. *
  151. * * SORT_UPDATED: Sort on `updated_at` value
  152. * * SORT_CREATED: Sort on `created_at` value
  153. * * SORT_OWNER: Sort on `owner` (organization repos etc may appear)
  154. *
  155. * @param int $flag Defines sorting algorithm to use
  156. * @param bool $asc Ascending order
  157. * @return Repos
  158. */
  159. public function sort_by(int $flag = Collection::SORT_INDEX, bool $asc = false) {
  160. $repos = new Repos($this->url, $this->token, $this->owner);
  161. switch ($flag) {
  162. case self::SORT_CREATED:
  163. $sort = $this->sort(function(Repo $a, Repo $b) {
  164. $adate = new \DateTime($a->created_at);
  165. $bdate = new \DateTime($b->created_at);
  166. return ($adate == $bdate ? 0 : ($adate > $bdate ? 1 : -1));
  167. });
  168. case self::SORT_UPDATED:
  169. $sort = $this->sort(function(Repo $a, Repo $b) {
  170. $adate = new \DateTime($a->updated_at);
  171. $bdate = new \DateTime($b->updated_at);
  172. return ($adate == $bdate ? 0 : ($adate > $bdate ? 1 : -1));
  173. });
  174. case self::SORT_OWNER:
  175. $sort = $this->sort(function(Repo $a, Repo $b) {
  176. return strcmp($a->owner->username, $b->owner->username);
  177. });
  178. default:
  179. $sort = $this->sort("ksort");
  180. }
  181. if ($asc)
  182. $sort = $sort->reverse();
  183. $repos->add($sort->all());
  184. return $repos;
  185. }
  186. /**
  187. * @see Collection
  188. */
  189. protected function add_object(\stdClass $obj) {
  190. $repo = new Repo($this->url, $this->token);
  191. $repo->json_set_property($obj);
  192. return $this->add($repo, $repo->full_name);
  193. }
  194. /**
  195. * Get private repositories
  196. *
  197. * @return Repos
  198. */
  199. public function privates() {
  200. $repos = new Repos($this->url, $this->token, $this->owner);
  201. $repos->add($this->filter(function(Repo $r) {
  202. return $r->private;
  203. })->all());
  204. return $repos;
  205. }
  206. /**
  207. * Get public repositories
  208. *
  209. * @return Repos
  210. */
  211. public function publics() {
  212. $repos = new Repos($this->url, $this->token, $this->owner);
  213. $repos->add($this->filter(function(Repo $r) {
  214. return !$r->private;
  215. })->all());
  216. return $repos;
  217. }
  218. /**
  219. * Get personal repositories
  220. *
  221. * @return Repos
  222. */
  223. public function personals() {
  224. $repos = new Repos($this->url, $this->token, $this->owner);
  225. if (empty($this->owner))
  226. return $repos;
  227. $repos->add($this->filter(function(Repo $r) {
  228. return $this->owner->username == $r->owner->username;
  229. })->all());
  230. return $repos;
  231. }
  232. /**
  233. * Get repositories contributed to
  234. *
  235. * @return Repos
  236. */
  237. public function contributions() {
  238. $repos = new Repos($this->url, $this->token, $this->owner);
  239. if (empty($this->owner))
  240. return $repos;
  241. $repos->add($this->filter(function(Repo $r) {
  242. return $this->owner->username != $r->owner->username;
  243. })->all());
  244. return $repos;
  245. }
  246. }
  247. }