hermes-sdk 0.1.0-alpha.1

The most comprehensive Rust SDK for eBay marketplace APIs - 17 specialized clients with 86+ methods
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
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
use crate::config::EbayConfig;
use crate::error::{HermesError, HermesResult};
use crate::ebay::auth::EbayAuth;
use std::sync::Arc;

// Import eBay Commerce Taxonomy SDK models and APIs
use hermes_ebay_commerce_taxonomy::models::{
    GetCategoriesAspectResponse, CategorySubtree, CategorySuggestionResponse, CategoryTree,
    GetCompatibilityMetadataResponse, GetCompatibilityPropertyValuesResponse, BaseCategoryTree,
    ExpiredCategories, AspectMetadata,
};
use hermes_ebay_commerce_taxonomy::apis::configuration::Configuration as TaxonomyConfiguration;

/// eBay Commerce Taxonomy API client for category and taxonomy operations
/// 
/// This client is crucial for the Intelligence API as it provides:
/// - Category suggestions for schema mapping
/// - Item aspects for listing validation
/// - Compatibility data for automotive parts
pub struct TaxonomyClient {
    config: EbayConfig,
    auth: Arc<EbayAuth>,
}

impl TaxonomyClient {
    /// Create a new Taxonomy API client
    pub fn new(config: EbayConfig) -> HermesResult<Self> {
        let auth = Arc::new(EbayAuth::new(config.clone())?);
        Ok(Self { config, auth })
    }

    /// Fetch item aspects for a category tree
    /// Used by Intelligence API for schema suggestions
    pub async fn fetch_item_aspects(
        &self,
        category_tree_id: &str,
    ) -> HermesResult<GetCategoriesAspectResponse> {
        let start_time = std::time::Instant::now();
        
        // Get access token
        let token_start = std::time::Instant::now();
        let token = self.auth.get_access_token().await?;
        let token_duration = token_start.elapsed();
        tracing::info!("OAuth token request for fetch_item_aspects: {:?}", token_duration);
        
        // Set up configuration
        let mut config = TaxonomyConfiguration::new();
        config.base_path = if self.config.sandbox {
            "https://api.sandbox.ebay.com/commerce/taxonomy/v1".to_string()
        } else {
            "https://api.ebay.com/commerce/taxonomy/v1".to_string()
        };
        config.oauth_access_token = Some(token);
        
        // Call the eBay SDK
        let ebay_start = std::time::Instant::now();
        let result = hermes_ebay_commerce_taxonomy::apis::category_tree_api::fetch_item_aspects(
            &config,
            &category_tree_id,
        ).await;
        let ebay_duration = ebay_start.elapsed();
        tracing::info!("eBay fetch_item_aspects API call: {:?}", ebay_duration);
        
        match result {
            Ok(response) => {
                let total_duration = start_time.elapsed();
                let our_processing = total_duration - token_duration - ebay_duration;
                tracing::info!("fetch_item_aspects total: {:?} | Our processing: {:?}", total_duration, our_processing);
                Ok(response)
            },
            Err(e) => {
                let total_duration = start_time.elapsed();
                tracing::error!("eBay fetch_item_aspects error after {:?}: {:?}", total_duration, e);
                Err(HermesError::ApiRequest(format!("eBay fetch_item_aspects failed: {:?}", e)))
            }
        }
    }

    /// Get category subtree
    pub async fn get_category_subtree(
        &self,
        category_id: &str,
        category_tree_id: &str,
        accept_encoding: Option<&str>,
    ) -> HermesResult<CategorySubtree> {
        let start_time = std::time::Instant::now();
        
        // Get access token
        let token_start = std::time::Instant::now();
        let token = self.auth.get_access_token().await?;
        let token_duration = token_start.elapsed();
        tracing::info!("OAuth token request for get_category_subtree: {:?}", token_duration);
        
        // Set up configuration
        let mut config = TaxonomyConfiguration::new();
        config.base_path = if self.config.sandbox {
            "https://api.sandbox.ebay.com/commerce/taxonomy/v1".to_string()
        } else {
            "https://api.ebay.com/commerce/taxonomy/v1".to_string()
        };
        config.oauth_access_token = Some(token);
        
        // Call the eBay SDK
        let ebay_start = std::time::Instant::now();
        let result = hermes_ebay_commerce_taxonomy::apis::category_tree_api::get_category_subtree(
            &config,
            category_id,
            &category_tree_id,
            accept_encoding,
        ).await;
        let ebay_duration = ebay_start.elapsed();
        tracing::info!("eBay get_category_subtree API call: {:?}", ebay_duration);
        
        match result {
            Ok(response) => {
                let total_duration = start_time.elapsed();
                let our_processing = total_duration - token_duration - ebay_duration;
                tracing::info!("get_category_subtree total: {:?} | Our processing: {:?}", total_duration, our_processing);
                Ok(response)
            },
            Err(e) => {
                let total_duration = start_time.elapsed();
                tracing::error!("eBay get_category_subtree error after {:?}: {:?}", total_duration, e);
                Err(HermesError::ApiRequest(format!("eBay get_category_subtree failed: {:?}", e)))
            }
        }
    }

    /// Get category suggestions based on a query
    /// Perfect for Intelligence API schema suggestions
    pub async fn get_category_suggestions(
        &self,
        category_tree_id: &str,
        query: &str,
    ) -> HermesResult<CategorySuggestionResponse> {
        let start_time = std::time::Instant::now();
        
        // Get access token
        let token_start = std::time::Instant::now();
        let token = self.auth.get_access_token().await?;
        let token_duration = token_start.elapsed();
        tracing::info!("OAuth token request for get_category_suggestions: {:?}", token_duration);
        
        // Set up configuration
        let mut config = TaxonomyConfiguration::new();
        config.base_path = if self.config.sandbox {
            "https://api.sandbox.ebay.com/commerce/taxonomy/v1".to_string()
        } else {
            "https://api.ebay.com/commerce/taxonomy/v1".to_string()
        };
        config.oauth_access_token = Some(token);
        
        // Call the eBay SDK
        let ebay_start = std::time::Instant::now();
        let result = hermes_ebay_commerce_taxonomy::apis::category_tree_api::get_category_suggestions(
            &config,
            &category_tree_id,
            query,
        ).await;
        let ebay_duration = ebay_start.elapsed();
        tracing::info!("eBay get_category_suggestions API call: {:?}", ebay_duration);
        
        match result {
            Ok(response) => {
                let total_duration = start_time.elapsed();
                let our_processing = total_duration - token_duration - ebay_duration;
                tracing::info!("get_category_suggestions total: {:?} | Our processing: {:?}", total_duration, our_processing);
                Ok(response)
            },
            Err(e) => {
                let total_duration = start_time.elapsed();
                tracing::error!("eBay get_category_suggestions error after {:?}: {:?}", total_duration, e);
                Err(HermesError::ApiRequest(format!("eBay get_category_suggestions failed: {:?}", e)))
            }
        }
    }

    /// Get complete category tree
    /// Already implemented in main EbayClient, but included here for completeness
    pub async fn get_category_tree(
        &self,
        category_tree_id: &str,
        accept_encoding: Option<&str>,
    ) -> HermesResult<CategoryTree> {
        let start_time = std::time::Instant::now();
        
        // Get access token
        let token_start = std::time::Instant::now();
        let token = self.auth.get_access_token().await?;
        let token_duration = token_start.elapsed();
        tracing::info!("OAuth token request for get_category_tree: {:?}", token_duration);
        
        // Set up configuration
        let mut config = TaxonomyConfiguration::new();
        config.base_path = if self.config.sandbox {
            "https://api.sandbox.ebay.com/commerce/taxonomy/v1".to_string()
        } else {
            "https://api.ebay.com/commerce/taxonomy/v1".to_string()
        };
        config.oauth_access_token = Some(token);
        
        // Call the eBay SDK
        let ebay_start = std::time::Instant::now();
        let result = hermes_ebay_commerce_taxonomy::apis::category_tree_api::get_category_tree(
            &config,
            &category_tree_id,
            accept_encoding,
        ).await;
        let ebay_duration = ebay_start.elapsed();
        tracing::info!("eBay get_category_tree API call: {:?}", ebay_duration);
        
        match result {
            Ok(response) => {
                let total_duration = start_time.elapsed();
                let our_processing = total_duration - token_duration - ebay_duration;
                tracing::info!("get_category_tree total: {:?} | Our processing: {:?}", total_duration, our_processing);
                Ok(response)
            },
            Err(e) => {
                let total_duration = start_time.elapsed();
                tracing::error!("eBay get_category_tree error after {:?}: {:?}", total_duration, e);
                Err(HermesError::ApiRequest(format!("eBay get_category_tree failed: {:?}", e)))
            }
        }
    }

    /// Get compatibility properties for automotive parts
    pub async fn get_compatibility_properties(
        &self,
        category_tree_id: &str,
        category_id: &str,
    ) -> HermesResult<GetCompatibilityMetadataResponse> {
        let start_time = std::time::Instant::now();
        
        // Get access token
        let token_start = std::time::Instant::now();
        let token = self.auth.get_access_token().await?;
        let token_duration = token_start.elapsed();
        tracing::info!("OAuth token request for get_compatibility_properties: {:?}", token_duration);
        
        // Set up configuration
        let mut config = TaxonomyConfiguration::new();
        config.base_path = if self.config.sandbox {
            "https://api.sandbox.ebay.com/commerce/taxonomy/v1".to_string()
        } else {
            "https://api.ebay.com/commerce/taxonomy/v1".to_string()
        };
        config.oauth_access_token = Some(token);
        
        // Call the eBay SDK
        let ebay_start = std::time::Instant::now();
        let result = hermes_ebay_commerce_taxonomy::apis::category_tree_api::get_compatibility_properties(
            &config,
            &category_tree_id,
            category_id,
        ).await;
        let ebay_duration = ebay_start.elapsed();
        tracing::info!("eBay get_compatibility_properties API call: {:?}", ebay_duration);
        
        match result {
            Ok(response) => {
                let total_duration = start_time.elapsed();
                let our_processing = total_duration - token_duration - ebay_duration;
                tracing::info!("get_compatibility_properties total: {:?} | Our processing: {:?}", total_duration, our_processing);
                Ok(response)
            },
            Err(e) => {
                let total_duration = start_time.elapsed();
                tracing::error!("eBay get_compatibility_properties error after {:?}: {:?}", total_duration, e);
                Err(HermesError::ApiRequest(format!("eBay get_compatibility_properties failed: {:?}", e)))
            }
        }
    }

    /// Get compatibility property values
    pub async fn get_compatibility_property_values(
        &self,
        category_tree_id: &str,
        compatibility_property: &str,
        category_id: &str,
        filter: Option<&str>,
    ) -> HermesResult<GetCompatibilityPropertyValuesResponse> {
        let start_time = std::time::Instant::now();
        
        // Get access token
        let token_start = std::time::Instant::now();
        let token = self.auth.get_access_token().await?;
        let token_duration = token_start.elapsed();
        tracing::info!("OAuth token request for get_compatibility_property_values: {:?}", token_duration);
        
        // Set up configuration
        let mut config = TaxonomyConfiguration::new();
        config.base_path = if self.config.sandbox {
            "https://api.sandbox.ebay.com/commerce/taxonomy/v1".to_string()
        } else {
            "https://api.ebay.com/commerce/taxonomy/v1".to_string()
        };
        config.oauth_access_token = Some(token);
        
        // Call the eBay SDK
        let ebay_start = std::time::Instant::now();
        let result = hermes_ebay_commerce_taxonomy::apis::category_tree_api::get_compatibility_property_values(
            &config,
            &category_tree_id,
            &compatibility_property,
            category_id,
            filter,
        ).await;
        let ebay_duration = ebay_start.elapsed();
        tracing::info!("eBay get_compatibility_property_values API call: {:?}", ebay_duration);
        
        match result {
            Ok(response) => {
                let total_duration = start_time.elapsed();
                let our_processing = total_duration - token_duration - ebay_duration;
                tracing::info!("get_compatibility_property_values total: {:?} | Our processing: {:?}", total_duration, our_processing);
                Ok(response)
            },
            Err(e) => {
                let total_duration = start_time.elapsed();
                tracing::error!("eBay get_compatibility_property_values error after {:?}: {:?}", total_duration, e);
                Err(HermesError::ApiRequest(format!("eBay get_compatibility_property_values failed: {:?}", e)))
            }
        }
    }

    /// Get default category tree ID for a marketplace
    pub async fn get_default_category_tree_id(
        &self,
        marketplace_id: &str,
    ) -> HermesResult<BaseCategoryTree> {
        let start_time = std::time::Instant::now();
        
        // Get access token
        let token_start = std::time::Instant::now();
        let token = self.auth.get_access_token().await?;
        let token_duration = token_start.elapsed();
        tracing::info!("OAuth token request for get_default_category_tree_id: {:?}", token_duration);
        
        // Set up configuration
        let mut config = TaxonomyConfiguration::new();
        config.base_path = if self.config.sandbox {
            "https://api.sandbox.ebay.com/commerce/taxonomy/v1".to_string()
        } else {
            "https://api.ebay.com/commerce/taxonomy/v1".to_string()
        };
        config.oauth_access_token = Some(token);
        
        // Call the eBay SDK
        let ebay_start = std::time::Instant::now();
        let result = hermes_ebay_commerce_taxonomy::apis::category_tree_api::get_default_category_tree_id(
            &config,
            marketplace_id,
        ).await;
        let ebay_duration = ebay_start.elapsed();
        tracing::info!("eBay get_default_category_tree_id API call: {:?}", ebay_duration);
        
        match result {
            Ok(response) => {
                let total_duration = start_time.elapsed();
                let our_processing = total_duration - token_duration - ebay_duration;
                tracing::info!("get_default_category_tree_id total: {:?} | Our processing: {:?}", total_duration, our_processing);
                Ok(response)
            },
            Err(e) => {
                let total_duration = start_time.elapsed();
                tracing::error!("eBay get_default_category_tree_id error after {:?}: {:?}", total_duration, e);
                Err(HermesError::ApiRequest(format!("eBay get_default_category_tree_id failed: {:?}", e)))
            }
        }
    }

    /// Get expired categories
    pub async fn get_expired_categories(
        &self,
        category_tree_id: &str,
    ) -> HermesResult<ExpiredCategories> {
        let start_time = std::time::Instant::now();
        
        // Get access token
        let token_start = std::time::Instant::now();
        let token = self.auth.get_access_token().await?;
        let token_duration = token_start.elapsed();
        tracing::info!("OAuth token request for get_expired_categories: {:?}", token_duration);
        
        // Set up configuration
        let mut config = TaxonomyConfiguration::new();
        config.base_path = if self.config.sandbox {
            "https://api.sandbox.ebay.com/commerce/taxonomy/v1".to_string()
        } else {
            "https://api.ebay.com/commerce/taxonomy/v1".to_string()
        };
        config.oauth_access_token = Some(token);
        
        // Call the eBay SDK
        let ebay_start = std::time::Instant::now();
        let result = hermes_ebay_commerce_taxonomy::apis::category_tree_api::get_expired_categories(
            &config,
            &category_tree_id,
        ).await;
        let ebay_duration = ebay_start.elapsed();
        tracing::info!("eBay get_expired_categories API call: {:?}", ebay_duration);
        
        match result {
            Ok(response) => {
                let total_duration = start_time.elapsed();
                let our_processing = total_duration - token_duration - ebay_duration;
                tracing::info!("get_expired_categories total: {:?} | Our processing: {:?}", total_duration, our_processing);
                Ok(response)
            },
            Err(e) => {
                let total_duration = start_time.elapsed();
                tracing::error!("eBay get_expired_categories error after {:?}: {:?}", total_duration, e);
                Err(HermesError::ApiRequest(format!("eBay get_expired_categories failed: {:?}", e)))
            }
        }
    }

    /// Get item aspects for a specific category
    /// Critical for Intelligence API listing validation
    pub async fn get_item_aspects_for_category(
        &self,
        category_id: &str,
        category_tree_id: &str,
    ) -> HermesResult<AspectMetadata> {
        let start_time = std::time::Instant::now();
        
        // Get access token
        let token_start = std::time::Instant::now();
        let token = self.auth.get_access_token().await?;
        let token_duration = token_start.elapsed();
        tracing::info!("OAuth token request for get_item_aspects_for_category: {:?}", token_duration);
        
        // Set up configuration
        let mut config = TaxonomyConfiguration::new();
        config.base_path = if self.config.sandbox {
            "https://api.sandbox.ebay.com/commerce/taxonomy/v1".to_string()
        } else {
            "https://api.ebay.com/commerce/taxonomy/v1".to_string()
        };
        config.oauth_access_token = Some(token);
        
        // Call the eBay SDK
        let ebay_start = std::time::Instant::now();
        let result = hermes_ebay_commerce_taxonomy::apis::category_tree_api::get_item_aspects_for_category(
            &config,
            category_id,
            &category_tree_id,
        ).await;
        let ebay_duration = ebay_start.elapsed();
        tracing::info!("eBay get_item_aspects_for_category API call: {:?}", ebay_duration);
        
        match result {
            Ok(response) => {
                let total_duration = start_time.elapsed();
                let our_processing = total_duration - token_duration - ebay_duration;
                tracing::info!("get_item_aspects_for_category total: {:?} | Our processing: {:?}", total_duration, our_processing);
                Ok(response)
            },
            Err(e) => {
                let total_duration = start_time.elapsed();
                tracing::error!("eBay get_item_aspects_for_category error after {:?}: {:?}", total_duration, e);
                Err(HermesError::ApiRequest(format!("eBay get_item_aspects_for_category failed: {:?}", e)))
            }
        }
    }
}