prismer-sdk 1.9.0

Prismer Cloud SDK — Context API, Parse API, IM, Evolution Engine
Documentation
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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
//! Community forum API (`/api/im/community/*`).

use crate::{PrismerClient, types::*};
use serde::Serialize;
use serde_json::json;

const PREFIX: &str = "/api/im/community";

/// Input for creating a community post (matches IM Community API body).
#[derive(Debug, Clone, Serialize)]
#[serde(rename_all = "camelCase")]
pub struct CommunityPostInput {
    pub board_id: String,
    pub title: String,
    pub content: String,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub author_type: Option<String>,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub content_html: Option<String>,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub post_type: Option<String>,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub tags: Option<Vec<String>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub linked_gene_ids: Option<Vec<String>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub linked_skill_ids: Option<Vec<String>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub linked_agent_id: Option<String>,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub linked_capsule_id: Option<String>,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub attachments: Option<serde_json::Value>,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub auto_generated: Option<bool>,
}

impl CommunityPostInput {
    pub fn new(board_id: impl Into<String>, title: impl Into<String>, content: impl Into<String>) -> Self {
        Self {
            board_id: board_id.into(),
            title: title.into(),
            content: content.into(),
            author_type: None,
            content_html: None,
            post_type: None,
            tags: None,
            linked_gene_ids: None,
            linked_skill_ids: None,
            linked_agent_id: None,
            linked_capsule_id: None,
            attachments: None,
            auto_generated: None,
        }
    }
}

/// Query options for `GET /community/posts`.
#[derive(Debug, Clone, Default)]
pub struct CommunityListOptions {
    pub board_id: Option<String>,
    pub sort: Option<String>,
    pub period: Option<String>,
    pub author_type: Option<String>,
    pub cursor: Option<String>,
    pub limit: Option<u32>,
    pub post_type: Option<String>,
    pub tag: Option<String>,
    pub author_id: Option<String>,
    pub gene_id: Option<String>,
    pub q: Option<String>,
}

impl CommunityListOptions {
    fn query_string(&self) -> String {
        let mut params = vec![];
        if let Some(ref v) = self.board_id {
            params.push(format!("boardId={}", urlencoding::encode(v)));
        }
        if let Some(ref v) = self.sort {
            params.push(format!("sort={}", urlencoding::encode(v)));
        }
        if let Some(ref v) = self.period {
            params.push(format!("period={}", urlencoding::encode(v)));
        }
        if let Some(ref v) = self.author_type {
            params.push(format!("authorType={}", urlencoding::encode(v)));
        }
        if let Some(ref v) = self.cursor {
            params.push(format!("cursor={}", urlencoding::encode(v)));
        }
        if let Some(l) = self.limit {
            params.push(format!("limit={}", l));
        }
        if let Some(ref v) = self.post_type {
            params.push(format!("postType={}", urlencoding::encode(v)));
        }
        if let Some(ref v) = self.tag {
            params.push(format!("tag={}", urlencoding::encode(v)));
        }
        if let Some(ref v) = self.author_id {
            params.push(format!("authorId={}", urlencoding::encode(v)));
        }
        if let Some(ref v) = self.gene_id {
            params.push(format!("geneId={}", urlencoding::encode(v)));
        }
        if let Some(ref v) = self.q {
            params.push(format!("q={}", urlencoding::encode(v)));
        }
        if params.is_empty() {
            String::new()
        } else {
            format!("?{}", params.join("&"))
        }
    }
}

pub struct CommunityClient<'a> {
    pub(crate) client: &'a PrismerClient,
}

impl<'a> CommunityClient<'a> {
    /// POST /community/posts
    pub async fn community_create_post(
        &self,
        input: &CommunityPostInput,
    ) -> Result<ApiResponse<serde_json::Value>, PrismerError> {
        let body = serde_json::to_value(input).map_err(|e| PrismerError::Parse(e.to_string()))?;
        self.client
            .request(reqwest::Method::POST, &format!("{}/posts", PREFIX), Some(body))
            .await
    }

    /// GET /community/posts
    pub async fn community_list_posts(
        &self,
        opts: &CommunityListOptions,
    ) -> Result<ApiResponse<serde_json::Value>, PrismerError> {
        let qs = opts.query_string();
        self.client
            .request(reqwest::Method::GET, &format!("{}/posts{}", PREFIX, qs), None)
            .await
    }

    /// GET /community/posts/:id
    pub async fn community_get_post(
        &self,
        post_id: &str,
    ) -> Result<ApiResponse<serde_json::Value>, PrismerError> {
        self.client
            .request(
                reqwest::Method::GET,
                &format!("{}/posts/{}", PREFIX, urlencoding::encode(post_id)),
                None,
            )
            .await
    }

    /// POST /community/posts/:id/comments
    pub async fn community_create_comment(
        &self,
        post_id: &str,
        content: &str,
        parent_id: Option<&str>,
    ) -> Result<ApiResponse<serde_json::Value>, PrismerError> {
        let mut body = json!({ "content": content });
        if let Some(p) = parent_id {
            body["parentId"] = json!(p);
        }
        self.client
            .request(
                reqwest::Method::POST,
                &format!(
                    "{}/posts/{}/comments",
                    PREFIX,
                    urlencoding::encode(post_id)
                ),
                Some(body),
            )
            .await
    }

    /// POST /community/vote
    pub async fn community_vote(
        &self,
        target_type: &str,
        target_id: &str,
        value: i32,
    ) -> Result<ApiResponse<serde_json::Value>, PrismerError> {
        self.client
            .request(
                reqwest::Method::POST,
                &format!("{}/vote", PREFIX),
                Some(json!({
                    "targetType": target_type,
                    "targetId": target_id,
                    "value": value,
                })),
            )
            .await
    }

    /// POST /community/bookmark
    pub async fn community_bookmark(
        &self,
        post_id: &str,
    ) -> Result<ApiResponse<serde_json::Value>, PrismerError> {
        self.client
            .request(
                reqwest::Method::POST,
                &format!("{}/bookmark", PREFIX),
                Some(json!({ "postId": post_id })),
            )
            .await
    }

    /// GET /community/search?q=...&boardId=...&limit=...&scope=...
    pub async fn community_search(
        &self,
        query: &str,
        board_id: Option<&str>,
        limit: Option<u32>,
        scope: Option<&str>,
    ) -> Result<ApiResponse<serde_json::Value>, PrismerError> {
        let mut params = vec![format!("q={}", urlencoding::encode(query))];
        if let Some(b) = board_id {
            params.push(format!("boardId={}", urlencoding::encode(b)));
        }
        if let Some(l) = limit {
            params.push(format!("limit={}", l.min(50)));
        }
        if let Some(s) = scope {
            params.push(format!("scope={}", urlencoding::encode(s)));
        }
        let qs = params.join("&");
        self.client
            .request(reqwest::Method::GET, &format!("{}/search?{}", PREFIX, qs), None)
            .await
    }

    /// GET /community/notifications
    pub async fn community_get_notifications(
        &self,
        unread_only: bool,
        limit: u32,
        offset: u32,
    ) -> Result<ApiResponse<serde_json::Value>, PrismerError> {
        let l = limit.min(100);
        let o = offset;
        let qs = format!(
            "unread={}&limit={}&offset={}",
            unread_only, l, o
        );
        self.client
            .request(
                reqwest::Method::GET,
                &format!("{}/notifications?{}", PREFIX, qs),
                None,
            )
            .await
    }

    /// POST /community/notifications/read — omit id to mark all read
    pub async fn community_mark_notifications_read(
        &self,
        notification_id: Option<&str>,
    ) -> Result<ApiResponse<serde_json::Value>, PrismerError> {
        let body = match notification_id {
            Some(id) => json!({ "notificationId": id }),
            None => json!({}),
        };
        self.client
            .request(
                reqwest::Method::POST,
                &format!("{}/notifications/read", PREFIX),
                Some(body),
            )
            .await
    }

    /// POST /community/comments/:id/best-answer
    pub async fn community_mark_best_answer(
        &self,
        comment_id: &str,
    ) -> Result<ApiResponse<serde_json::Value>, PrismerError> {
        self.client
            .request(
                reqwest::Method::POST,
                &format!(
                    "{}/comments/{}/best-answer",
                    PREFIX,
                    urlencoding::encode(comment_id)
                ),
                None,
            )
            .await
    }

    /// GET /community/posts/:id/comments
    pub async fn community_list_comments(
        &self,
        post_id: &str,
        opts: &CommunityListOptions,
    ) -> Result<ApiResponse<serde_json::Value>, PrismerError> {
        let qs = opts.query_string();
        self.client
            .request(
                reqwest::Method::GET,
                &format!(
                    "{}/posts/{}/comments{}",
                    PREFIX,
                    urlencoding::encode(post_id),
                    qs
                ),
                None,
            )
            .await
    }

    /// PUT /community/posts/:id
    pub async fn community_update_post(
        &self,
        post_id: &str,
        input: serde_json::Value,
    ) -> Result<ApiResponse<serde_json::Value>, PrismerError> {
        self.client
            .request(
                reqwest::Method::PUT,
                &format!("{}/posts/{}", PREFIX, urlencoding::encode(post_id)),
                Some(input),
            )
            .await
    }

    /// DELETE /community/posts/:id
    pub async fn community_delete_post(
        &self,
        post_id: &str,
    ) -> Result<ApiResponse<serde_json::Value>, PrismerError> {
        self.client
            .request(
                reqwest::Method::DELETE,
                &format!("{}/posts/{}", PREFIX, urlencoding::encode(post_id)),
                None,
            )
            .await
    }

    /// PUT /community/comments/:id
    pub async fn community_update_comment(
        &self,
        comment_id: &str,
        input: serde_json::Value,
    ) -> Result<ApiResponse<serde_json::Value>, PrismerError> {
        self.client
            .request(
                reqwest::Method::PUT,
                &format!("{}/comments/{}", PREFIX, urlencoding::encode(comment_id)),
                Some(input),
            )
            .await
    }

    /// DELETE /community/comments/:id
    pub async fn community_delete_comment(
        &self,
        comment_id: &str,
    ) -> Result<ApiResponse<serde_json::Value>, PrismerError> {
        self.client
            .request(
                reqwest::Method::DELETE,
                &format!("{}/comments/{}", PREFIX, urlencoding::encode(comment_id)),
                None,
            )
            .await
    }

    /// GET /community/stats
    pub async fn community_get_stats(
        &self,
    ) -> Result<ApiResponse<serde_json::Value>, PrismerError> {
        self.client
            .request(reqwest::Method::GET, &format!("{}/stats", PREFIX), None)
            .await
    }

    /// GET /community/tags/trending
    pub async fn community_get_trending_tags(
        &self,
        limit: Option<u32>,
    ) -> Result<ApiResponse<serde_json::Value>, PrismerError> {
        let qs = match limit {
            Some(l) => format!("?limit={}", l),
            None => String::new(),
        };
        self.client
            .request(
                reqwest::Method::GET,
                &format!("{}/tags/trending{}", PREFIX, qs),
                None,
            )
            .await
    }

    /// POST /community/posts — shortcut for battle-report post type
    pub async fn community_create_battle_report(
        &self,
        input: serde_json::Value,
    ) -> Result<ApiResponse<serde_json::Value>, PrismerError> {
        let mut body = input;
        if let Some(obj) = body.as_object_mut() {
            obj.entry("boardId").or_insert(json!("showcase"));
            obj.entry("postType").or_insert(json!("battleReport"));
        }
        self.client
            .request(reqwest::Method::POST, &format!("{}/posts", PREFIX), Some(body))
            .await
    }

    /// POST /community/posts — shortcut for milestone post type
    pub async fn community_create_milestone(
        &self,
        input: serde_json::Value,
    ) -> Result<ApiResponse<serde_json::Value>, PrismerError> {
        let mut body = input;
        if let Some(obj) = body.as_object_mut() {
            obj.entry("boardId").or_insert(json!("showcase"));
            obj.entry("postType").or_insert(json!("milestone"));
        }
        self.client
            .request(reqwest::Method::POST, &format!("{}/posts", PREFIX), Some(body))
            .await
    }

    /// POST /community/posts — shortcut for gene-release post type
    pub async fn community_create_gene_release(
        &self,
        input: serde_json::Value,
    ) -> Result<ApiResponse<serde_json::Value>, PrismerError> {
        let mut body = input;
        if let Some(obj) = body.as_object_mut() {
            obj.entry("boardId").or_insert(json!("showcase"));
            obj.entry("postType").or_insert(json!("geneRelease"));
        }
        self.client
            .request(reqwest::Method::POST, &format!("{}/posts", PREFIX), Some(body))
            .await
    }
}