mirror of
https://github.com/kjuulh/dagger-rs.git
synced 2025-08-18 05:03:27 +02:00
207 lines
5.8 KiB
Rust
207 lines
5.8 KiB
Rust
use convert_case::{Case, Casing};
|
|
use dagger_core::introspection::FullTypeFields;
|
|
use genco::prelude::rust;
|
|
use genco::quote;
|
|
use genco::tokens::quoted;
|
|
|
|
use crate::functions::{
|
|
type_field_has_optional, type_ref_is_list_of_objects, type_ref_is_object,
|
|
type_ref_is_optional, CommonFunctions,
|
|
};
|
|
use crate::utility::OptionExt;
|
|
|
|
pub fn format_name(s: &str) -> String {
|
|
s.to_case(Case::Pascal)
|
|
}
|
|
|
|
pub fn format_struct_name(s: &str) -> String {
|
|
s.to_case(Case::Snake)
|
|
}
|
|
|
|
pub fn field_options_struct_name(field: &FullTypeFields) -> Option<String> {
|
|
field
|
|
.parent_type
|
|
.as_ref()
|
|
.map(|p| p.name.as_ref().map(|n| format_name(n)))
|
|
.flatten()
|
|
.zip(field.name.as_ref().map(|n| format_name(n)))
|
|
.map(|(parent_name, field_name)| format!("{parent_name}{field_name}Opts"))
|
|
}
|
|
|
|
pub fn format_function(funcs: &CommonFunctions, field: &FullTypeFields) -> Option<rust::Tokens> {
|
|
let signature = quote! {
|
|
pub fn $(field.name.pipe(|n | format_struct_name(n)))
|
|
};
|
|
let args = format_function_args(funcs, field);
|
|
|
|
let output_type = field
|
|
.type_
|
|
.pipe(|t| &t.type_ref)
|
|
.pipe(|t| funcs.format_output_type(t));
|
|
|
|
Some(quote! {
|
|
$(signature)(
|
|
$(args)
|
|
) -> $(output_type) {
|
|
let mut query = self.selection.select($(quoted(field.name.as_ref())));
|
|
|
|
$(render_required_args(funcs, field))
|
|
$(render_optional_args(funcs, field))
|
|
|
|
$(render_execution(funcs, field))
|
|
}
|
|
})
|
|
}
|
|
|
|
fn render_required_args(_funcs: &CommonFunctions, field: &FullTypeFields) -> Option<rust::Tokens> {
|
|
if let Some(args) = field.args.as_ref() {
|
|
let args = args
|
|
.into_iter()
|
|
.map(|a| {
|
|
a.as_ref().and_then(|s| {
|
|
if type_ref_is_optional(&s.input_value.type_) {
|
|
return None;
|
|
}
|
|
|
|
let n = format_struct_name(&s.input_value.name);
|
|
let name = &s.input_value.name;
|
|
|
|
Some(quote! {
|
|
query = query.arg($(quoted(name)), $(n)).unwrap();
|
|
})
|
|
})
|
|
})
|
|
.flatten()
|
|
.collect::<Vec<_>>();
|
|
let required_args = quote! {
|
|
$(for arg in args join ($['\r']) => $arg)
|
|
};
|
|
|
|
Some(required_args)
|
|
} else {
|
|
None
|
|
}
|
|
}
|
|
|
|
fn render_optional_args(_funcs: &CommonFunctions, field: &FullTypeFields) -> Option<rust::Tokens> {
|
|
if let Some(args) = field.args.as_ref() {
|
|
let args = args
|
|
.into_iter()
|
|
.map(|a| {
|
|
a.as_ref().and_then(|s| {
|
|
if !type_ref_is_optional(&s.input_value.type_) {
|
|
return None;
|
|
}
|
|
|
|
let n = format_struct_name(&s.input_value.name);
|
|
let name = &s.input_value.name;
|
|
|
|
Some(quote! {
|
|
if let Some($(&n)) = opts.$(&n) {
|
|
query = query.arg($(quoted(name)), $(&n)).unwrap();
|
|
}
|
|
})
|
|
})
|
|
})
|
|
.flatten()
|
|
.collect::<Vec<_>>();
|
|
|
|
if args.len() == 0 {
|
|
return None;
|
|
}
|
|
|
|
let required_args = quote! {
|
|
if let Some(opts) = opts {
|
|
$(for arg in args join ($['\r']) => $arg)
|
|
}
|
|
};
|
|
|
|
Some(required_args)
|
|
} else {
|
|
None
|
|
}
|
|
}
|
|
|
|
fn render_execution(funcs: &CommonFunctions, field: &FullTypeFields) -> rust::Tokens {
|
|
if let Some(true) = field.type_.pipe(|t| type_ref_is_object(&t.type_ref)) {
|
|
let output_type = funcs.format_output_type(&field.type_.as_ref().unwrap().type_ref);
|
|
return quote! {
|
|
return $(output_type) {
|
|
proc: self.proc.clone(),
|
|
selection: query,
|
|
conn: self.conn.clone(),
|
|
}
|
|
};
|
|
}
|
|
|
|
if let Some(true) = field
|
|
.type_
|
|
.pipe(|t| type_ref_is_list_of_objects(&t.type_ref))
|
|
{
|
|
let output_type = funcs.format_output_type(
|
|
&field
|
|
.type_
|
|
.as_ref()
|
|
.unwrap()
|
|
.type_ref
|
|
.of_type
|
|
.as_ref()
|
|
.unwrap()
|
|
.of_type
|
|
.as_ref()
|
|
.unwrap(),
|
|
);
|
|
return quote! {
|
|
return vec![$(output_type) {
|
|
proc: self.proc.clone(),
|
|
selection: query,
|
|
conn: self.conn.clone(),
|
|
}]
|
|
};
|
|
}
|
|
|
|
let graphql_client = rust::import("crate::client", "graphql_client");
|
|
|
|
quote! {
|
|
query.execute(&$graphql_client(&self.conn)).unwrap().unwrap()
|
|
}
|
|
}
|
|
|
|
fn format_function_args(funcs: &CommonFunctions, field: &FullTypeFields) -> Option<rust::Tokens> {
|
|
if let Some(args) = field.args.as_ref() {
|
|
let args = args
|
|
.into_iter()
|
|
.map(|a| {
|
|
a.as_ref().and_then(|s| {
|
|
if type_ref_is_optional(&s.input_value.type_) {
|
|
return None;
|
|
}
|
|
|
|
let t = funcs.format_input_type(&s.input_value.type_);
|
|
let n = format_struct_name(&s.input_value.name);
|
|
|
|
Some(quote! {
|
|
$(n): $(t),
|
|
})
|
|
})
|
|
})
|
|
.flatten()
|
|
.collect::<Vec<_>>();
|
|
let required_args = quote! {
|
|
&self,
|
|
$(for arg in args join ($['\r']) => $arg)
|
|
};
|
|
|
|
if type_field_has_optional(field) {
|
|
Some(quote! {
|
|
$(required_args)
|
|
opts: Option<$(field_options_struct_name(field))>
|
|
})
|
|
} else {
|
|
Some(required_args)
|
|
}
|
|
} else {
|
|
None
|
|
}
|
|
}
|