shopify-sdk 1.0.0

A Rust SDK for the Shopify API
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
//! Province resource implementation.
//!
//! This module provides the [`Province`] resource for managing provinces/states
//! within a country. Provinces are nested under countries and have limited
//! operations.
//!
//! # Nested Resource
//!
//! Provinces are nested under Countries:
//! - `GET /countries/{country_id}/provinces.json`
//! - `GET /countries/{country_id}/provinces/{id}.json`
//! - `PUT /countries/{country_id}/provinces/{id}.json`
//! - `GET /countries/{country_id}/provinces/count.json`
//!
//! Note: Provinces cannot be created or deleted directly. They are managed
//! through the Country resource.
//!
//! # Example
//!
//! ```rust,ignore
//! use shopify_sdk::rest::{RestResource, ResourceResponse};
//! use shopify_sdk::rest::resources::v2025_10::{Province, ProvinceListParams};
//!
//! // List provinces for a country
//! let provinces = Province::all_with_parent(&client, "country_id", 879921427, None).await?;
//! for province in provinces.iter() {
//!     println!("{} ({}) - tax: {:?}",
//!         province.name.as_deref().unwrap_or(""),
//!         province.code.as_deref().unwrap_or(""),
//!         province.tax);
//! }
//!
//! // Update a province's tax
//! let mut province = Province::find_with_parent(&client, 879921427, 224293623, None).await?.into_inner();
//! province.tax = Some(0.13);
//! // Note: Updates require saving through the nested path
//! ```

use std::collections::HashMap;

use serde::{Deserialize, Serialize};

use crate::clients::RestClient;
use crate::rest::{
    build_path, get_path, ResourceError, ResourceOperation, ResourcePath, ResourceResponse,
    RestResource,
};
use crate::HttpMethod;

/// A province or state within a country.
///
/// Provinces define regional tax rates within a country. They are nested
/// resources under Country and have limited operations (no create/delete).
///
/// # Nested Resource
///
/// This is a nested resource under `Country`. All operations require the
/// parent `country_id`.
///
/// # Limited Operations
///
/// - **No Create**: Provinces are created when the country is created
/// - **No Delete**: Provinces can only be removed by deleting the country
/// - **Update**: Tax rates can be modified
///
/// # Fields
///
/// ## Read-Only Fields
/// - `id` - The unique identifier
/// - `country_id` - The parent country ID
/// - `name` - The province name (derived from code)
/// - `shipping_zone_id` - The associated shipping zone
///
/// ## Writable Fields
/// - `code` - The province code (e.g., "ON", "CA")
/// - `tax` - The provincial tax rate as a decimal
/// - `tax_name` - The name of the tax (e.g., "HST", "PST")
/// - `tax_type` - The tax calculation type
/// - `tax_percentage` - The tax rate as a percentage
#[derive(Debug, Clone, Serialize, Deserialize, Default, PartialEq)]
pub struct Province {
    /// The unique identifier of the province.
    /// Read-only field.
    #[serde(skip_serializing)]
    pub id: Option<u64>,

    /// The ID of the parent country.
    /// Read-only field.
    #[serde(skip_serializing)]
    pub country_id: Option<u64>,

    /// The full name of the province.
    /// Read-only field - derived from the province code.
    #[serde(skip_serializing)]
    pub name: Option<String>,

    /// The province code (e.g., "ON" for Ontario, "CA" for California).
    #[serde(skip_serializing_if = "Option::is_none")]
    pub code: Option<String>,

    /// The provincial tax rate as a decimal.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub tax: Option<f64>,

    /// The name of the tax (e.g., "HST", "PST", "Sales Tax").
    #[serde(skip_serializing_if = "Option::is_none")]
    pub tax_name: Option<String>,

    /// The tax calculation type: "normal", "compounded", or "harmonized".
    #[serde(skip_serializing_if = "Option::is_none")]
    pub tax_type: Option<String>,

    /// The tax rate as a percentage (e.g., 13.0 for 13%).
    #[serde(skip_serializing_if = "Option::is_none")]
    pub tax_percentage: Option<f64>,

    /// The ID of the shipping zone this province belongs to.
    /// Read-only field.
    #[serde(skip_serializing)]
    pub shipping_zone_id: Option<u64>,
}

impl Province {
    /// Counts provinces under a specific country.
    ///
    /// # Arguments
    ///
    /// * `client` - The REST client
    /// * `country_id` - The parent country ID
    /// * `params` - Optional count parameters
    pub async fn count_with_parent(
        client: &RestClient,
        country_id: u64,
        _params: Option<ProvinceCountParams>,
    ) -> Result<u64, ResourceError> {
        let mut ids: HashMap<&str, String> = HashMap::new();
        ids.insert("country_id", country_id.to_string());

        let available_ids: Vec<&str> = ids.keys().copied().collect();
        let path = get_path(Self::PATHS, ResourceOperation::Count, &available_ids).ok_or(
            ResourceError::PathResolutionFailed {
                resource: Self::NAME,
                operation: "count",
            },
        )?;

        let url = build_path(path.template, &ids);
        let response = client.get(&url, None).await?;

        if !response.is_ok() {
            return Err(ResourceError::from_http_response(
                response.code,
                &response.body,
                Self::NAME,
                None,
                response.request_id(),
            ));
        }

        let count = response
            .body
            .get("count")
            .and_then(serde_json::Value::as_u64)
            .ok_or_else(|| {
                ResourceError::Http(crate::clients::HttpError::Response(
                    crate::clients::HttpResponseError {
                        code: response.code,
                        message: "Missing 'count' in response".to_string(),
                        error_reference: response.request_id().map(ToString::to_string),
                    },
                ))
            })?;

        Ok(count)
    }

    /// Finds a single province by ID under a country.
    ///
    /// # Arguments
    ///
    /// * `client` - The REST client
    /// * `country_id` - The parent country ID
    /// * `id` - The province ID to find
    /// * `params` - Optional parameters
    pub async fn find_with_parent(
        client: &RestClient,
        country_id: u64,
        id: u64,
        _params: Option<ProvinceFindParams>,
    ) -> Result<ResourceResponse<Self>, ResourceError> {
        let mut ids: HashMap<&str, String> = HashMap::new();
        ids.insert("country_id", country_id.to_string());
        ids.insert("id", id.to_string());

        let available_ids: Vec<&str> = ids.keys().copied().collect();
        let path = get_path(Self::PATHS, ResourceOperation::Find, &available_ids).ok_or(
            ResourceError::PathResolutionFailed {
                resource: Self::NAME,
                operation: "find",
            },
        )?;

        let url = build_path(path.template, &ids);
        let response = client.get(&url, None).await?;

        if !response.is_ok() {
            return Err(ResourceError::from_http_response(
                response.code,
                &response.body,
                Self::NAME,
                Some(&id.to_string()),
                response.request_id(),
            ));
        }

        let key = Self::resource_key();
        ResourceResponse::from_http_response(response, &key)
    }
}

impl RestResource for Province {
    type Id = u64;
    type FindParams = ProvinceFindParams;
    type AllParams = ProvinceListParams;
    type CountParams = ProvinceCountParams;

    const NAME: &'static str = "Province";
    const PLURAL: &'static str = "provinces";

    /// Paths for the Province resource.
    ///
    /// Limited operations - no Create or Delete.
    /// All paths require country_id.
    const PATHS: &'static [ResourcePath] = &[
        ResourcePath::new(
            HttpMethod::Get,
            ResourceOperation::Find,
            &["country_id", "id"],
            "countries/{country_id}/provinces/{id}",
        ),
        ResourcePath::new(
            HttpMethod::Get,
            ResourceOperation::All,
            &["country_id"],
            "countries/{country_id}/provinces",
        ),
        ResourcePath::new(
            HttpMethod::Get,
            ResourceOperation::Count,
            &["country_id"],
            "countries/{country_id}/provinces/count",
        ),
        ResourcePath::new(
            HttpMethod::Put,
            ResourceOperation::Update,
            &["country_id", "id"],
            "countries/{country_id}/provinces/{id}",
        ),
        // Note: No Create or Delete paths - provinces managed via Country
    ];

    fn get_id(&self) -> Option<Self::Id> {
        self.id
    }
}

/// Parameters for finding a single province.
#[derive(Debug, Clone, Serialize, Deserialize, Default, PartialEq, Eq)]
pub struct ProvinceFindParams {
    /// Comma-separated list of fields to include in the response.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub fields: Option<String>,
}

/// Parameters for listing provinces.
#[derive(Debug, Clone, Serialize, Deserialize, Default, PartialEq, Eq)]
pub struct ProvinceListParams {
    /// Return provinces after this ID.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub since_id: Option<u64>,

    /// Comma-separated list of fields to include in the response.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub fields: Option<String>,
}

/// Parameters for counting provinces.
#[derive(Debug, Clone, Serialize, Deserialize, Default, PartialEq, Eq)]
pub struct ProvinceCountParams {}

#[cfg(test)]
mod tests {
    use super::*;
    use crate::rest::{get_path, ResourceOperation};

    #[test]
    fn test_province_serialization() {
        let province = Province {
            id: Some(224293623),
            country_id: Some(879921427),
            name: Some("Ontario".to_string()),
            code: Some("ON".to_string()),
            tax: Some(0.08),
            tax_name: Some("HST".to_string()),
            tax_type: Some("compounded".to_string()),
            tax_percentage: Some(8.0),
            shipping_zone_id: Some(123),
        };

        let json = serde_json::to_string(&province).unwrap();
        let parsed: serde_json::Value = serde_json::from_str(&json).unwrap();

        // Writable fields should be present
        assert_eq!(parsed["code"], "ON");
        assert_eq!(parsed["tax"], 0.08);
        assert_eq!(parsed["tax_name"], "HST");
        assert_eq!(parsed["tax_type"], "compounded");
        assert_eq!(parsed["tax_percentage"], 8.0);

        // Read-only fields should be omitted
        assert!(parsed.get("id").is_none());
        assert!(parsed.get("country_id").is_none());
        assert!(parsed.get("name").is_none());
        assert!(parsed.get("shipping_zone_id").is_none());
    }

    #[test]
    fn test_province_deserialization() {
        let json = r#"{
            "id": 224293623,
            "country_id": 879921427,
            "name": "Ontario",
            "code": "ON",
            "tax": 0.08,
            "tax_name": "HST",
            "tax_type": "compounded",
            "tax_percentage": 8.0,
            "shipping_zone_id": 123456
        }"#;

        let province: Province = serde_json::from_str(json).unwrap();

        assert_eq!(province.id, Some(224293623));
        assert_eq!(province.country_id, Some(879921427));
        assert_eq!(province.name, Some("Ontario".to_string()));
        assert_eq!(province.code, Some("ON".to_string()));
        assert_eq!(province.tax, Some(0.08));
        assert_eq!(province.tax_name, Some("HST".to_string()));
        assert_eq!(province.tax_type, Some("compounded".to_string()));
        assert_eq!(province.tax_percentage, Some(8.0));
        assert_eq!(province.shipping_zone_id, Some(123456));
    }

    #[test]
    fn test_province_nested_paths_no_create_delete() {
        // Find requires both country_id and id
        let find_path = get_path(
            Province::PATHS,
            ResourceOperation::Find,
            &["country_id", "id"],
        );
        assert!(find_path.is_some());
        assert_eq!(
            find_path.unwrap().template,
            "countries/{country_id}/provinces/{id}"
        );

        // All requires country_id
        let all_path = get_path(Province::PATHS, ResourceOperation::All, &["country_id"]);
        assert!(all_path.is_some());
        assert_eq!(
            all_path.unwrap().template,
            "countries/{country_id}/provinces"
        );

        // Count requires country_id
        let count_path = get_path(Province::PATHS, ResourceOperation::Count, &["country_id"]);
        assert!(count_path.is_some());
        assert_eq!(
            count_path.unwrap().template,
            "countries/{country_id}/provinces/count"
        );

        // Update requires both country_id and id
        let update_path = get_path(
            Province::PATHS,
            ResourceOperation::Update,
            &["country_id", "id"],
        );
        assert!(update_path.is_some());
        assert_eq!(
            update_path.unwrap().template,
            "countries/{country_id}/provinces/{id}"
        );

        // No Create path (provinces managed via Country)
        let create_path = get_path(Province::PATHS, ResourceOperation::Create, &["country_id"]);
        assert!(create_path.is_none());

        // No Delete path (provinces managed via Country)
        let delete_path = get_path(
            Province::PATHS,
            ResourceOperation::Delete,
            &["country_id", "id"],
        );
        assert!(delete_path.is_none());
    }

    #[test]
    fn test_province_constants() {
        assert_eq!(Province::NAME, "Province");
        assert_eq!(Province::PLURAL, "provinces");
    }

    #[test]
    fn test_province_get_id() {
        let province_with_id = Province {
            id: Some(224293623),
            code: Some("ON".to_string()),
            ..Default::default()
        };
        assert_eq!(province_with_id.get_id(), Some(224293623));

        let province_without_id = Province::default();
        assert_eq!(province_without_id.get_id(), None);
    }
}