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
// @generated by xtask/generate_services.py — do not edit by hand.
//! `blogs` — typed methods for all 7 API v3 operations
//! in this module.
//!
//! Access via [`Ghl::v3`](crate::Ghl::v3)`().blogs()`. These endpoints send `Version: v3`.
//!
//! Request and response types come from [`ghl_models::v3::blogs`](https://docs.rs/ghl-models/latest/ghl_models/v3/blogs/); every endpoint is also documented in the
//! [`blogs` API reference](https://github.com/Shahroz/ghl-rs/blob/main/docs/api/blogs.md).
//!
//! Enable with `features = ["blogs"]`.
#![allow(clippy::too_many_arguments)]
use crate::client::Ghl;
use crate::error::Result;
use ghl_models::v3::blogs as models;
/// Typed access to the `blogs` API v3 surface (7 operations). Obtained via
/// [`Ghl::v3`](crate::Ghl::v3)`().blogs()`.
#[derive(Debug, Clone)]
pub struct BlogsService {
pub(crate) client: Ghl,
}
impl BlogsService {
pub(crate) fn new(client: Ghl) -> Self {
Self { client }
}
}
/// Query parameters for [`BlogsService::get_all_authors`].
#[derive(Debug, Clone, Default)]
pub struct GetAllAuthorsParams {
/// Location Id
/// Required by the API.
pub location_id: String,
/// Number of authors to show in the listing
/// Required by the API.
pub limit: f64,
/// Number of authors to skip in listing
/// Required by the API.
pub offset: f64,
}
impl GetAllAuthorsParams {
/// Start from the parameters the API requires.
pub fn new(location_id: impl Into<String>, limit: f64, offset: f64) -> Self {
Self {
location_id: location_id.into(),
limit,
offset,
}
}
fn to_query(&self) -> Vec<(String, String)> {
let q: Vec<(String, String)> = vec![
("locationId".into(), self.location_id.clone()),
("limit".into(), self.limit.to_string()),
("offset".into(), self.offset.to_string()),
];
q
}
}
/// Query parameters for [`BlogsService::get_all_categories`].
#[derive(Debug, Clone, Default)]
pub struct GetAllCategoriesParams {
/// `locationId` query parameter.
/// Required by the API.
pub location_id: String,
/// Number of categories to show in the listing
/// Required by the API.
pub limit: f64,
/// Number of categories to skip in listing
/// Required by the API.
pub offset: f64,
}
impl GetAllCategoriesParams {
/// Start from the parameters the API requires.
pub fn new(location_id: impl Into<String>, limit: f64, offset: f64) -> Self {
Self {
location_id: location_id.into(),
limit,
offset,
}
}
fn to_query(&self) -> Vec<(String, String)> {
let q: Vec<(String, String)> = vec![
("locationId".into(), self.location_id.clone()),
("limit".into(), self.limit.to_string()),
("offset".into(), self.offset.to_string()),
];
q
}
}
/// Query parameters for [`BlogsService::get_blog_posts_by_blog_id`].
#[derive(Debug, Clone, Default)]
pub struct GetBlogPostsByBlogIdParams {
/// `locationId` query parameter.
/// Required by the API.
pub location_id: String,
/// `blogId` query parameter.
/// Required by the API.
pub blog_id: String,
/// `limit` query parameter.
/// Required by the API.
pub limit: f64,
/// `offset` query parameter.
/// Required by the API.
pub offset: f64,
/// search for any post by name
pub search_term: Option<String>,
/// `status` query parameter.
/// Allowed values: `ALL`, `PUBLISHED`, `SCHEDULED`, `ARCHIVED`, `DRAFT`.
pub status: Option<String>,
}
impl GetBlogPostsByBlogIdParams {
/// Start from the parameters the API requires.
pub fn new(
location_id: impl Into<String>,
blog_id: impl Into<String>,
limit: f64,
offset: f64,
) -> Self {
Self {
location_id: location_id.into(),
blog_id: blog_id.into(),
limit,
offset,
..Default::default()
}
}
/// search for any post by name
pub fn search_term(mut self, v: impl Into<String>) -> Self {
self.search_term = Some(v.into());
self
}
/// Set the `status` query parameter.
pub fn status(mut self, v: impl Into<String>) -> Self {
self.status = Some(v.into());
self
}
fn to_query(&self) -> Vec<(String, String)> {
let mut q: Vec<(String, String)> = vec![
("locationId".into(), self.location_id.clone()),
("blogId".into(), self.blog_id.clone()),
("limit".into(), self.limit.to_string()),
("offset".into(), self.offset.to_string()),
];
if let Some(v) = &self.search_term {
q.push(("searchTerm".into(), v.to_string()));
}
if let Some(v) = &self.status {
q.push(("status".into(), v.to_string()));
}
q
}
}
/// Query parameters for [`BlogsService::check_url_slug`].
#[derive(Debug, Clone, Default)]
pub struct CheckUrlSlugParams {
/// `urlSlug` query parameter.
/// Required by the API.
pub url_slug: String,
/// `locationId` query parameter.
/// Required by the API.
pub location_id: String,
/// `postId` query parameter.
pub post_id: Option<String>,
}
impl CheckUrlSlugParams {
/// Start from the parameters the API requires.
pub fn new(url_slug: impl Into<String>, location_id: impl Into<String>) -> Self {
Self {
url_slug: url_slug.into(),
location_id: location_id.into(),
..Default::default()
}
}
/// Set the `postId` query parameter.
pub fn post_id(mut self, v: impl Into<String>) -> Self {
self.post_id = Some(v.into());
self
}
fn to_query(&self) -> Vec<(String, String)> {
let mut q: Vec<(String, String)> = vec![
("urlSlug".into(), self.url_slug.clone()),
("locationId".into(), self.location_id.clone()),
];
if let Some(v) = &self.post_id {
q.push(("postId".into(), v.to_string()));
}
q
}
}
/// Query parameters for [`BlogsService::get_blogs_by_location_id`].
#[derive(Debug, Clone, Default)]
pub struct GetBlogsByLocationIdParams {
/// `locationId` query parameter.
/// Required by the API.
pub location_id: String,
/// `skip` query parameter.
/// Required by the API.
pub skip: f64,
/// `limit` query parameter.
/// Required by the API.
pub limit: f64,
/// search for any post by name
pub search_term: Option<String>,
}
impl GetBlogsByLocationIdParams {
/// Start from the parameters the API requires.
pub fn new(location_id: impl Into<String>, skip: f64, limit: f64) -> Self {
Self {
location_id: location_id.into(),
skip,
limit,
..Default::default()
}
}
/// search for any post by name
pub fn search_term(mut self, v: impl Into<String>) -> Self {
self.search_term = Some(v.into());
self
}
fn to_query(&self) -> Vec<(String, String)> {
let mut q: Vec<(String, String)> = vec![
("locationId".into(), self.location_id.clone()),
("skip".into(), self.skip.to_string()),
("limit".into(), self.limit.to_string()),
];
if let Some(v) = &self.search_term {
q.push(("searchTerm".into(), v.to_string()));
}
q
}
}
impl BlogsService {
/// Get all authors
///
/// The "Get all authors" Api return the blog authors for a given location ID. Please
/// use "blogs/author.readonly"
///
/// `GET /blogs/authors`
///
/// Requires scope: `blogs/author.readonly`.
pub async fn get_all_authors(
&self,
params: &GetAllAuthorsParams,
) -> Result<models::AuthorsResponseDTO> {
let query = params.to_query();
self.client
.send_versioned(
reqwest::Method::GET,
"/blogs/authors",
&query,
None::<&()>,
Some("v3"),
)
.await
}
/// Get all categories
///
/// The "Get all categories" Api return the blog categoies for a given location ID.
/// Please use "blogs/category.readonly"
///
/// `GET /blogs/categories`
///
/// Requires scope: `blogs/category.readonly`.
pub async fn get_all_categories(
&self,
params: &GetAllCategoriesParams,
) -> Result<models::CategoriesResponseDTO> {
let query = params.to_query();
self.client
.send_versioned(
reqwest::Method::GET,
"/blogs/categories",
&query,
None::<&()>,
Some("v3"),
)
.await
}
/// Create Blog Post
///
/// The "Create Blog Post" API allows you create blog post for any given blog site.
/// Please use blogs/post.write
///
/// `POST /blogs/posts`
///
/// Requires scope: `blogs/post.write`.
pub async fn create_blog_post(
&self,
body: &models::CreateBlogPostParams,
) -> Result<models::BlogPostCreateResponseWrapperDTO> {
let query = Vec::new();
self.client
.send_versioned(
reqwest::Method::POST,
"/blogs/posts",
&query,
Some(body),
Some("v3"),
)
.await
}
/// Get Blog posts by Blog ID
///
/// The "Get Blog posts by Blog ID" API allows you get blog posts for any given blog
/// site using blog ID.Please use blogs/posts.readonly
///
/// `GET /blogs/posts/all`
///
/// Requires scope: `blogs/posts.readonly`.
pub async fn get_blog_posts_by_blog_id(
&self,
params: &GetBlogPostsByBlogIdParams,
) -> Result<models::BlogPostGetResponseWrapperDTO> {
let query = params.to_query();
self.client
.send_versioned(
reqwest::Method::GET,
"/blogs/posts/all",
&query,
None::<&()>,
Some("v3"),
)
.await
}
/// Check url slug
///
/// The "Check url slug" API allows check the blog slug validation which is needed
/// before publishing any blog post. Please use blogs/check-slug.readonly. you can find
/// the POST ID from the post edit url.
///
/// `GET /blogs/posts/url-slug-exists`
///
/// Requires scope: `blogs/check-slug.readonly`.
pub async fn check_url_slug(
&self,
params: &CheckUrlSlugParams,
) -> Result<models::UrlSlugCheckResponseDTO> {
let query = params.to_query();
self.client
.send_versioned(
reqwest::Method::GET,
"/blogs/posts/url-slug-exists",
&query,
None::<&()>,
Some("v3"),
)
.await
}
/// Update Blog Post
///
/// The "Update Blog Post" API allows you update blog post for any given blog site.
/// Please use blogs/post-update.write
///
/// `PUT /blogs/posts/{postId}`
///
/// Requires scope: `blogs/post-update.write`.
pub async fn update_blog_post(
&self,
post_id: &str,
body: &models::UpdateBlogPostParams,
) -> Result<models::BlogPostUpdateResponseWrapperDTO> {
let path = format!("/blogs/posts/{}", crate::services::encode(post_id));
let query = Vec::new();
self.client
.send_versioned(reqwest::Method::PUT, &path, &query, Some(body), Some("v3"))
.await
}
/// Get Blogs by Location ID
///
/// The "Get Blogs by Location ID" API allows you get blogs using Location ID.Please use
/// blogs/list.readonly
///
/// `GET /blogs/site/all`
///
/// Requires scope: `blogs/list.readonly`.
pub async fn get_blogs_by_location_id(
&self,
params: &GetBlogsByLocationIdParams,
) -> Result<models::BlogGetResponseWrapperDTO> {
let query = params.to_query();
self.client
.send_versioned(
reqwest::Method::GET,
"/blogs/site/all",
&query,
None::<&()>,
Some("v3"),
)
.await
}
}