ad4m_client/
expressions.rs

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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
use std::sync::Arc;

use crate::{util::query, ClientInfo};
use anyhow::{Context, Result};
use graphql_client::GraphQLQuery;
use serde::{Deserialize, Serialize};
use serde_json::Value;

#[derive(GraphQLQuery, Debug)]
#[graphql(
    schema_path = "schema.gql",
    query_path = "src/expressions.gql",
    response_derives = "Debug"
)]
pub struct ExpressionCreate;

pub async fn expression_create(
    executor_url: String,
    cap_token: String,
    language_address: String,
    content: Value,
) -> Result<String> {
    let content = serde_json::to_string(&content)?;
    let response_data: expression_create::ResponseData = query(
        executor_url,
        cap_token,
        ExpressionCreate::build_query(expression_create::Variables {
            language_address,
            content,
        }),
    )
    .await
    .with_context(|| "Failed to run expressions->create mutation")?;
    Ok(response_data.expression_create)
}

#[derive(GraphQLQuery, Debug, Serialize, Deserialize)]
#[graphql(
    schema_path = "schema.gql",
    query_path = "src/expressions.gql",
    response_derives = "Debug"
)]
pub struct Expression;

pub async fn expression(
    executor_url: String,
    cap_token: String,
    url: String,
) -> Result<Option<expression::ExpressionExpression>> {
    let response_data: expression::ResponseData = query(
        executor_url,
        cap_token,
        Expression::build_query(expression::Variables { url }),
    )
    .await
    .with_context(|| "Failed to run expressions->get query")?;
    Ok(response_data.expression)
}

pub struct ExpressionsClient {
    info: Arc<ClientInfo>,
}

impl ExpressionsClient {
    pub fn new(info: Arc<ClientInfo>) -> Self {
        Self { info }
    }

    pub async fn expression_create(
        &self,
        language_address: String,
        content: Value,
    ) -> Result<String> {
        expression_create(
            self.info.executor_url.clone(),
            self.info.cap_token.clone(),
            language_address,
            content,
        )
        .await
    }

    pub async fn expression(
        &self,
        url: String,
    ) -> Result<Option<expression::ExpressionExpression>> {
        expression(
            self.info.executor_url.clone(),
            self.info.cap_token.clone(),
            url,
        )
        .await
    }
}