ad4m_client/
neighbourhoods.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
95
96
use std::sync::Arc;

use crate::{util::query, ClientInfo};
use anyhow::{Context, Result};
use graphql_client::GraphQLQuery;

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

pub async fn publish(
    executor_url: String,
    cap_token: String,
    link_language: String,
    meta: Option<publish_from_perspective::PerspectiveInput>,
    perspective_uuid: String,
) -> Result<String> {
    let meta = meta.unwrap_or(publish_from_perspective::PerspectiveInput { links: vec![] });
    let response_data: publish_from_perspective::ResponseData = query(
        executor_url,
        cap_token,
        PublishFromPerspective::build_query(publish_from_perspective::Variables {
            link_language,
            meta,
            perspective_uuid,
        }),
    )
    .await
    .with_context(|| "Failed to run neighbourhoods->publish query")?;
    Ok(response_data.neighbourhood_publish_from_perspective)
}

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

pub async fn join(
    executor_url: String,
    cap_token: String,
    url: String,
) -> Result<join_from_url::JoinFromUrlNeighbourhoodJoinFromUrl> {
    let response_data: join_from_url::ResponseData = query(
        executor_url,
        cap_token,
        JoinFromUrl::build_query(join_from_url::Variables { url }),
    )
    .await
    .with_context(|| "Failed to run neighbourhoods->join query")?;
    Ok(response_data.neighbourhood_join_from_url)
}

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

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

    pub async fn publish(
        &self,
        link_language: String,
        meta: Option<publish_from_perspective::PerspectiveInput>,
        perspective_uuid: String,
    ) -> Result<String> {
        publish(
            self.info.executor_url.clone(),
            self.info.cap_token.clone(),
            link_language,
            meta,
            perspective_uuid,
        )
        .await
    }

    pub async fn join(
        &self,
        url: String,
    ) -> Result<join_from_url::JoinFromUrlNeighbourhoodJoinFromUrl> {
        join(
            self.info.executor_url.clone(),
            self.info.cap_token.clone(),
            url,
        )
        .await
    }
}