lib.rs 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429
  1. //! Definitions for GitHub GraphQL.
  2. //!
  3. //! See <https://docs.github.com/en/graphql> for more GitHub's GraphQL API.
  4. // This schema can be downloaded from https://docs.github.com/public/schema.docs.graphql
  5. pub mod queries {
  6. use super::schema;
  7. pub type Date = chrono::NaiveDate;
  8. pub type DateTime = chrono::DateTime<chrono::Utc>;
  9. cynic::impl_scalar!(Date, schema::Date);
  10. cynic::impl_scalar!(DateTime, schema::DateTime);
  11. #[derive(cynic::QueryVariables, Debug, Clone)]
  12. pub struct LeastRecentlyReviewedPullRequestsArguments<'a> {
  13. pub repository_owner: &'a str,
  14. pub repository_name: &'a str,
  15. pub after: Option<String>,
  16. }
  17. #[derive(cynic::QueryFragment, Debug)]
  18. #[cynic(
  19. graphql_type = "Query",
  20. variables = "LeastRecentlyReviewedPullRequestsArguments"
  21. )]
  22. pub struct LeastRecentlyReviewedPullRequests {
  23. #[arguments(owner: $repository_owner, name: $repository_name)]
  24. pub repository: Option<Repository>,
  25. }
  26. #[derive(cynic::QueryFragment, Debug)]
  27. #[cynic(variables = "LeastRecentlyReviewedPullRequestsArguments")]
  28. pub struct Repository {
  29. #[arguments(
  30. states: "OPEN",
  31. first: 100,
  32. after: $after,
  33. labels: ["S-waiting-on-review"],
  34. orderBy: {direction: "ASC", field: "UPDATED_AT"}
  35. )]
  36. pub pull_requests: PullRequestConnection,
  37. }
  38. #[derive(cynic::QueryFragment, Debug)]
  39. pub struct PullRequestConnection {
  40. pub total_count: i32,
  41. pub page_info: PageInfo,
  42. #[cynic(flatten)]
  43. pub nodes: Vec<PullRequest>,
  44. }
  45. #[derive(cynic::QueryFragment, Debug)]
  46. pub struct PullRequest {
  47. pub number: i32,
  48. pub created_at: DateTime,
  49. pub url: Uri,
  50. pub title: String,
  51. #[arguments(first = 100)]
  52. pub labels: Option<LabelConnection>,
  53. pub is_draft: bool,
  54. #[arguments(first = 100)]
  55. pub assignees: UserConnection,
  56. #[arguments(first = 100, orderBy: { direction: "DESC", field: "UPDATED_AT" })]
  57. pub comments: IssueCommentConnection,
  58. #[arguments(last = 20)]
  59. pub latest_reviews: Option<PullRequestReviewConnection>,
  60. }
  61. #[derive(cynic::QueryFragment, Debug)]
  62. pub struct PullRequestReviewConnection {
  63. pub total_count: i32,
  64. #[cynic(flatten)]
  65. pub nodes: Vec<PullRequestReview>,
  66. }
  67. #[derive(cynic::QueryFragment, Debug)]
  68. pub struct PullRequestReview {
  69. pub author: Option<Actor>,
  70. pub created_at: DateTime,
  71. }
  72. #[derive(cynic::QueryFragment, Debug)]
  73. pub struct UserConnection {
  74. #[cynic(flatten)]
  75. pub nodes: Vec<User>,
  76. }
  77. #[derive(cynic::QueryFragment, Debug)]
  78. pub struct User {
  79. pub login: String,
  80. pub database_id: Option<i32>,
  81. }
  82. #[derive(cynic::QueryFragment, Debug)]
  83. pub struct PageInfo {
  84. pub has_next_page: bool,
  85. pub end_cursor: Option<String>,
  86. }
  87. #[derive(cynic::QueryFragment, Debug)]
  88. pub struct LabelConnection {
  89. #[cynic(flatten)]
  90. pub nodes: Vec<Label>,
  91. }
  92. #[derive(cynic::QueryFragment, Debug)]
  93. pub struct Label {
  94. pub name: String,
  95. }
  96. #[derive(cynic::QueryFragment, Debug)]
  97. pub struct IssueCommentConnection {
  98. pub total_count: i32,
  99. #[cynic(flatten)]
  100. pub nodes: Vec<IssueComment>,
  101. }
  102. #[derive(cynic::QueryFragment, Debug)]
  103. pub struct IssueComment {
  104. pub author: Option<Actor>,
  105. pub created_at: DateTime,
  106. }
  107. #[derive(cynic::QueryFragment, Debug)]
  108. pub struct Actor {
  109. pub login: String,
  110. }
  111. #[derive(cynic::Scalar, Debug, Clone)]
  112. #[cynic(graphql_type = "URI")]
  113. pub struct Uri(pub String);
  114. }
  115. pub mod docs_update_queries {
  116. use super::queries::{DateTime, PageInfo};
  117. use super::schema;
  118. #[derive(cynic::QueryVariables, Clone, Debug)]
  119. pub struct RecentCommitsArguments<'a> {
  120. pub branch: &'a str,
  121. pub name: &'a str,
  122. pub owner: &'a str,
  123. pub after: Option<String>,
  124. }
  125. /// Query for fetching recent commits and their associated PRs.
  126. ///
  127. /// This query is built from:
  128. ///
  129. /// ```text
  130. /// query RecentCommits($name: String!, $owner: String!, $branch: String!, $after: String) {
  131. /// repository(name: $name, owner: $owner) {
  132. /// ref(qualifiedName: $branch) {
  133. /// target {
  134. /// ... on Commit {
  135. /// history(first: 100, after: $after) {
  136. /// totalCount
  137. /// pageInfo {
  138. /// hasNextPage
  139. /// endCursor
  140. /// }
  141. /// nodes {
  142. /// oid
  143. /// parents(first: 1) {
  144. /// nodes {
  145. /// oid
  146. /// }
  147. /// }
  148. /// committedDate
  149. /// messageHeadline
  150. /// associatedPullRequests(first: 1) {
  151. /// nodes {
  152. /// number
  153. /// title
  154. /// }
  155. /// }
  156. /// }
  157. /// }
  158. /// }
  159. /// }
  160. /// }
  161. /// }
  162. /// }
  163. /// ```
  164. #[derive(cynic::QueryFragment, Debug)]
  165. #[cynic(graphql_type = "Query", variables = "RecentCommitsArguments")]
  166. pub struct RecentCommits {
  167. #[arguments(name: $name, owner: $owner)]
  168. pub repository: Option<Repository>,
  169. }
  170. #[derive(cynic::QueryFragment, Debug)]
  171. #[cynic(variables = "RecentCommitsArguments")]
  172. pub struct Repository {
  173. #[arguments(qualifiedName: $branch)]
  174. #[cynic(rename = "ref")]
  175. pub ref_: Option<Ref>,
  176. }
  177. #[derive(cynic::QueryFragment, Debug)]
  178. #[cynic(variables = "RecentCommitsArguments")]
  179. pub struct Ref {
  180. pub target: Option<GitObject>,
  181. }
  182. #[derive(cynic::QueryFragment, Debug)]
  183. #[cynic(variables = "RecentCommitsArguments")]
  184. pub struct Commit {
  185. #[arguments(first: 100, after: $after)]
  186. pub history: CommitHistoryConnection,
  187. }
  188. #[derive(cynic::QueryFragment, Debug)]
  189. pub struct CommitHistoryConnection {
  190. pub total_count: i32,
  191. pub page_info: PageInfo,
  192. #[cynic(flatten)]
  193. pub nodes: Vec<Commit2>,
  194. }
  195. #[derive(cynic::QueryFragment, Debug)]
  196. #[cynic(graphql_type = "Commit")]
  197. pub struct Commit2 {
  198. pub oid: GitObjectID,
  199. #[arguments(first = 1)]
  200. pub parents: CommitConnection,
  201. pub committed_date: DateTime,
  202. pub message_headline: String,
  203. #[arguments(first = 1)]
  204. pub associated_pull_requests: Option<PullRequestConnection>,
  205. }
  206. #[derive(cynic::QueryFragment, Debug)]
  207. pub struct PullRequestConnection {
  208. #[cynic(flatten)]
  209. pub nodes: Vec<PullRequest>,
  210. }
  211. #[derive(cynic::QueryFragment, Debug)]
  212. pub struct PullRequest {
  213. pub number: i32,
  214. pub title: String,
  215. }
  216. #[derive(cynic::QueryFragment, Debug)]
  217. pub struct CommitConnection {
  218. #[cynic(flatten)]
  219. pub nodes: Vec<Commit3>,
  220. }
  221. #[derive(cynic::QueryFragment, Debug)]
  222. #[cynic(graphql_type = "Commit")]
  223. pub struct Commit3 {
  224. pub oid: GitObjectID,
  225. }
  226. #[derive(cynic::InlineFragments, Debug)]
  227. #[cynic(variables = "RecentCommitsArguments")]
  228. pub enum GitObject {
  229. Commit(Commit),
  230. #[cynic(fallback)]
  231. Other,
  232. }
  233. #[derive(cynic::Scalar, Debug, Clone)]
  234. pub struct GitObjectID(pub String);
  235. }
  236. #[cynic::schema("github")]
  237. mod schema {}
  238. pub mod project_items {
  239. use super::queries::{Date, PageInfo, Uri};
  240. use super::schema;
  241. #[derive(cynic::QueryVariables, Debug, Clone)]
  242. pub struct Arguments {
  243. pub project_number: i32,
  244. pub after: Option<String>,
  245. }
  246. #[derive(cynic::QueryFragment, Debug)]
  247. #[cynic(variables = "Arguments")]
  248. pub struct Query {
  249. #[arguments(login: "DragonOS-Community")]
  250. pub organization: Option<Organization>,
  251. }
  252. #[derive(cynic::QueryFragment, Debug)]
  253. #[cynic(variables = "Arguments")]
  254. pub struct Organization {
  255. #[arguments(number: $project_number)]
  256. pub project_v2: Option<ProjectV2>,
  257. }
  258. #[derive(cynic::QueryFragment, Debug)]
  259. #[cynic(variables = "Arguments")]
  260. pub struct ProjectV2 {
  261. #[arguments(first: 100, after: $after)]
  262. pub items: ProjectV2ItemConnection,
  263. }
  264. #[derive(cynic::QueryFragment, Debug)]
  265. pub struct ProjectV2ItemConnection {
  266. pub nodes: Option<Vec<Option<ProjectV2Item>>>,
  267. pub page_info: PageInfo,
  268. }
  269. #[derive(cynic::QueryFragment, Debug)]
  270. pub struct ProjectV2Item {
  271. pub content: Option<ProjectV2ItemContent>,
  272. // Currently we hard code the field names we care about here.
  273. #[cynic(rename = "fieldValueByName")]
  274. #[arguments(name = "Status")]
  275. pub status: Option<ProjectV2ItemFieldValue>,
  276. #[cynic(rename = "fieldValueByName")]
  277. #[arguments(name = "Date")]
  278. pub date: Option<ProjectV2ItemFieldValue>,
  279. }
  280. impl ProjectV2Item {
  281. pub fn status(&self) -> Option<&str> {
  282. let Some(ref status) = self.status else {
  283. return None;
  284. };
  285. status.as_str()
  286. }
  287. pub fn date(&self) -> Option<Date> {
  288. let Some(ref date) = self.date else {
  289. return None;
  290. };
  291. date.as_date()
  292. }
  293. }
  294. #[derive(cynic::InlineFragments, Debug)]
  295. pub enum ProjectV2ItemContent {
  296. Issue(Issue),
  297. #[cynic(fallback)]
  298. Other,
  299. }
  300. #[derive(cynic::InlineFragments, Debug)]
  301. pub enum ProjectV2ItemFieldValue {
  302. ProjectV2ItemFieldSingleSelectValue(ProjectV2ItemFieldSingleSelectValue),
  303. ProjectV2ItemFieldDateValue(ProjectV2ItemFieldDateValue),
  304. #[cynic(fallback)]
  305. Other,
  306. }
  307. impl ProjectV2ItemFieldValue {
  308. pub fn as_str(&self) -> Option<&str> {
  309. Some(match self {
  310. Self::ProjectV2ItemFieldSingleSelectValue(val) => val.name.as_deref()?,
  311. _ => return None,
  312. })
  313. }
  314. pub fn as_date(&self) -> Option<Date> {
  315. match self {
  316. Self::ProjectV2ItemFieldDateValue(val) => val.date,
  317. _ => None,
  318. }
  319. }
  320. }
  321. #[derive(cynic::QueryFragment, Debug)]
  322. pub struct Issue {
  323. pub title: String,
  324. pub url: Uri,
  325. pub number: i32,
  326. }
  327. #[derive(cynic::QueryFragment, Debug)]
  328. pub struct ProjectV2ItemFieldSingleSelectValue {
  329. pub name: Option<String>,
  330. }
  331. #[derive(cynic::QueryFragment, Debug)]
  332. pub struct ProjectV2ItemFieldDateValue {
  333. pub date: Option<Date>,
  334. }
  335. }
  336. /// Retrieve all pull requests waiting on review from T-compiler
  337. /// GraphQL query: see file github-graphql/PullRequestsOpen.gql
  338. pub mod pull_requests_open {
  339. use crate::queries::{LabelConnection, PullRequestConnection, UserConnection};
  340. use super::queries::DateTime;
  341. use super::schema;
  342. #[derive(cynic::QueryVariables, Clone, Debug)]
  343. pub struct PullRequestsOpenVariables<'a> {
  344. pub repo_owner: &'a str,
  345. pub repo_name: &'a str,
  346. pub after: Option<String>,
  347. }
  348. #[derive(cynic::QueryFragment, Debug)]
  349. #[cynic(graphql_type = "Query", variables = "PullRequestsOpenVariables")]
  350. pub struct PullRequestsOpen {
  351. #[arguments(owner: $repo_owner, name: $repo_name)]
  352. pub repository: Option<Repository>,
  353. }
  354. #[derive(cynic::QueryFragment, Debug)]
  355. #[cynic(variables = "PullRequestsOpenVariables")]
  356. pub struct Repository {
  357. #[arguments(first: 100, after: $after, states: "OPEN")]
  358. pub pull_requests: PullRequestConnection,
  359. }
  360. #[derive(cynic::QueryFragment, Debug)]
  361. pub struct PullRequest {
  362. pub number: i32,
  363. pub updated_at: DateTime,
  364. pub created_at: DateTime,
  365. #[arguments(first: 10)]
  366. pub assignees: UserConnection,
  367. #[arguments(first: 5, orderBy: { direction: "DESC", field: "NAME" })]
  368. pub labels: Option<LabelConnection>,
  369. }
  370. }