1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
|
use anyhow::Result;
use gitlab::AsyncGitlab;
use graphql_client::GraphQLQuery;
pub mod config;
#[derive(Clone, Debug)]
pub struct Gitlab {
client: AsyncGitlab,
}
impl Gitlab {
pub async fn new(host: &str, token: &str, tls: bool) -> Result<Gitlab> {
let mut gitlab = gitlab::GitlabBuilder::new(host, token);
if !tls {
gitlab.insecure();
}
let gitlab = gitlab.build_async().await?;
Ok(Gitlab { client: gitlab })
}
pub async fn from_config(forge: &config::Gitlab) -> Result<Gitlab> {
Gitlab::new(&forge.host, &forge.token, forge.tls).await
}
}
#[async_trait::async_trait]
impl super::ForgeTrait for Gitlab {
#[tracing::instrument(level = "trace")]
async fn projects(&self, scope: &str) -> Result<Vec<super::Project>> {
let query = Projects::build_query(projects::Variables {
scope: scope.to_owned(),
});
// debug!("query: {:#?}", query);
let res = self.client.graphql::<Projects>(&query).await?;
let res = res
.projects
.unwrap()
.nodes
.unwrap()
.into_iter()
.filter(|x| x.is_some())
.map(|x| x.unwrap().into())
.collect();
Ok(res)
}
}
#[derive(GraphQLQuery)]
#[graphql(
query_path = "graphql/projects_query.graphql",
schema_path = "graphql/schema.graphql",
response_derives = "Clone,Debug",
variables_derives = "Clone,Debug"
)]
pub struct Projects;
impl From<projects::ProjectsProjectsNodes> for super::Project {
fn from(project: projects::ProjectsProjectsNodes) -> Self {
super::Project {
id: project.id,
name: project.name,
path: project.full_path,
ssh_clone_url: project.ssh_url_to_repo,
http_clone_url: project.http_url_to_repo,
}
}
}
|