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
//Anything related to getting apps and it's properties goes here.
use super::{App, AppFeature, AppSetup, AppWebhook, AppWebhookDelivery, WebhookEvent, SNI, SSL};

use crate::framework::endpoint::{HerokuEndpoint, Method};

/// App Info
///
/// Get info for existing app.
///
/// [See Heroku documentation for more information about this endpoint](https://devcenter.heroku.com/articles/platform-api-reference#app-info)
pub struct AppDetails {
    /// app_id can be the app id or app name.
    pub app_id: String,
}

impl AppDetails {
    pub fn new(app_id: String) -> AppDetails {
        AppDetails { app_id }
    }
}

impl HerokuEndpoint<App> for AppDetails {
    fn method(&self) -> Method {
        Method::Get
    }
    fn path(&self) -> String {
        format!("apps/{}", self.app_id)
    }
}

/// App List
///
/// List existing apps.
///
/// [See Heroku documentation for more information about this endpoint](https://devcenter.heroku.com/articles/platform-api-reference#app-list)
pub struct AppList {}

impl AppList {
    pub fn new() -> AppList {
        AppList {}
    }
}

impl HerokuEndpoint<Vec<App>> for AppList {
    fn method(&self) -> Method {
        Method::Get
    }
    fn path(&self) -> String {
        format!("apps")
    }
}

/// App List Owned and Collaborated
///
/// List owned and collaborated apps (excludes team apps).
///
/// [See Heroku documentation for more information about this endpoint](https://devcenter.heroku.com/articles/platform-api-reference#app-list-owned-and-collaborated)
pub struct AccountAppList {
    /// account_id can be the account email, id or self.
    pub account_id: String,
}

impl AccountAppList {
    pub fn new(account_id: String) -> AccountAppList {
        AccountAppList { account_id }
    }
}

impl HerokuEndpoint<Vec<App>> for AccountAppList {
    fn method(&self) -> Method {
        Method::Get
    }
    fn path(&self) -> String {
        format!("users/{}/apps", self.account_id)
    }
}

/// App Feature Info
///
/// Info for an existing app feature.
///
/// [See Heroku documentation for more information about this endpoint](https://devcenter.heroku.com/articles/platform-api-reference#app-feature-info)
pub struct AppFeatureDetails {
    /// app_id can be the app name or id.
    pub app_id: String,
    /// feature_id can be the feature name or id.
    pub feature_id: String,
}

impl AppFeatureDetails {
    pub fn new(app_id: String, feature_id: String) -> AppFeatureDetails {
        AppFeatureDetails { app_id, feature_id }
    }
}

impl HerokuEndpoint<AppFeature> for AppFeatureDetails {
    fn method(&self) -> Method {
        Method::Get
    }
    fn path(&self) -> String {
        format!("apps/{}/features/{}", self.app_id, self.feature_id)
    }
}

/// App Feature List
///
/// List existing app features.
///
/// [See Heroku documentation for more information about this endpoint](https://devcenter.heroku.com/articles/platform-api-reference#app-feature-list)
pub struct AppFeatureList {
    /// app_id can be the app name or id.
    pub app_id: String,
}

impl AppFeatureList {
    pub fn new(app_id: String) -> AppFeatureList {
        AppFeatureList { app_id }
    }
}

impl HerokuEndpoint<Vec<AppFeature>> for AppFeatureList {
    fn method(&self) -> Method {
        Method::Get
    }
    fn path(&self) -> String {
        format!("apps/{}/features", self.app_id)
    }
}

/// App Webhook List
///
/// List all webhook subscriptions for a particular app.
///
/// [See Heroku documentation for more information about this endpoint](https://devcenter.heroku.com/articles/platform-api-reference#app-webhook-list)
pub struct AppWebhookList {
    /// app_id can be the app name or id.
    pub app_id: String,
}

impl AppWebhookList {
    pub fn new(app_id: String) -> AppWebhookList {
        AppWebhookList { app_id }
    }
}

impl HerokuEndpoint<Vec<AppWebhook>> for AppWebhookList {
    fn method(&self) -> Method {
        Method::Get
    }
    fn path(&self) -> String {
        format!("apps/{}/webhooks", self.app_id)
    }
}

/// App Webhook Info
///
/// Returns the info for an app webhook subscription.
///
/// [See Heroku documentation for more information about this endpoint](https://devcenter.heroku.com/articles/platform-api-reference#app-webhook-info)
pub struct AppWebhookDetails {
    /// app_id can be the app name or id.
    pub app_id: String,
    /// webhook_id is the webhook id.
    pub webhook_id: String,
}

impl AppWebhookDetails {
    pub fn new(app_id: String, webhook_id: String) -> AppWebhookDetails {
        AppWebhookDetails { app_id, webhook_id }
    }
}

impl HerokuEndpoint<AppWebhook> for AppWebhookDetails {
    fn method(&self) -> Method {
        Method::Get
    }
    fn path(&self) -> String {
        format!("apps/{}/webhooks/{}", self.app_id, self.webhook_id)
    }
}

/// App Webhook Delivery
///
/// Returns the info for an existing delivery.
///
/// [See Heroku documentation for more information about this endpoint](https://devcenter.heroku.com/articles/platform-api-reference#app-webhook-delivery-info)
pub struct AppWebhookDeliveryDetails {
    /// app_id can be the app name or id.
    pub app_id: String,
    /// webhook_delivery_id is the webhook delivery id.
    pub webhook_delivery_id: String,
}

impl AppWebhookDeliveryDetails {
    pub fn new(app_id: String, webhook_delivery_id: String) -> AppWebhookDeliveryDetails {
        AppWebhookDeliveryDetails {
            app_id,
            webhook_delivery_id,
        }
    }
}

impl HerokuEndpoint<AppWebhookDelivery> for AppWebhookDeliveryDetails {
    fn method(&self) -> Method {
        Method::Get
    }
    fn path(&self) -> String {
        format!(
            "apps/{}/webhook-deliveries/{}",
            self.app_id, self.webhook_delivery_id
        )
    }
}

/// App Webhook Deliveries
///
/// Lists existing deliveries for an app.
///
/// [See Heroku documentation for more information about this endpoint](https://devcenter.heroku.com/articles/platform-api-reference#app-webhook-delivery-list)
pub struct AppWebhookDeliveryList {
    /// app_id can be the app name or id.
    pub app_id: String,
}

impl AppWebhookDeliveryList {
    pub fn new(app_id: String) -> AppWebhookDeliveryList {
        AppWebhookDeliveryList { app_id }
    }
}

impl HerokuEndpoint<Vec<AppWebhookDelivery>> for AppWebhookDeliveryList {
    fn method(&self) -> Method {
        Method::Get
    }
    fn path(&self) -> String {
        format!("apps/{}/webhook-deliveries", self.app_id,)
    }
}

/// App Setup Info
///
/// Get the status of an app setup.
///
/// [See Heroku documentation for more information about this endpoint](https://devcenter.heroku.com/articles/platform-api-reference#app-setup-info)
pub struct AppSetupDetails {
    /// setup_id is the unique setup identifier.
    pub setup_id: String,
}

impl AppSetupDetails {
    pub fn new(setup_id: String) -> AppSetupDetails {
        AppSetupDetails { setup_id }
    }
}

impl HerokuEndpoint<AppSetup> for AppSetupDetails {
    fn method(&self) -> Method {
        Method::Get
    }
    fn path(&self) -> String {
        format!("app-setups/{}", self.setup_id)
    }
}

/// SNI Endpoint Info
///
/// Info for existing SNI endpoint.
///
/// [See Heroku documentation for more information about this endpoint](https://devcenter.heroku.com/articles/platform-api-reference#sni-endpoint-info)
pub struct SNIDetails<'a> {
    /// app_id can be the app name or id.
    pub app_id: &'a str,
    /// sni unique identifier
    pub sni_id: &'a str,
}

impl<'a> SNIDetails<'a> {
    pub fn new(app_id: &'a str, sni_id: &'a str) -> SNIDetails<'a> {
        SNIDetails { app_id, sni_id }
    }
}

impl<'a> HerokuEndpoint<SNI> for SNIDetails<'a> {
    fn method(&self) -> Method {
        Method::Get
    }
    fn path(&self) -> String {
        format!("apps/{}/sni-endpoints/{}", self.app_id, self.sni_id)
    }
}

/// SNI Endpoint List
///
/// List existing SNI endpoints.
///
/// [See Heroku documentation for more information about this endpoint](https://devcenter.heroku.com/articles/platform-api-reference#sni-endpoint-list)
pub struct SNIList<'a> {
    /// app_id can be the app name or id.
    pub app_id: &'a str,
}

impl<'a> SNIList<'a> {
    pub fn new(app_id: &'a str) -> SNIList<'a> {
        SNIList { app_id }
    }
}

impl<'a> HerokuEndpoint<Vec<SNI>> for SNIList<'a> {
    fn method(&self) -> Method {
        Method::Get
    }
    fn path(&self) -> String {
        format!("apps/{}/sni-endpoints", self.app_id)
    }
}

/// SSL Endpoint List
///
/// List existing SSL endpoints.
///
/// [See Heroku documentation for more information about this endpoint](https://devcenter.heroku.com/articles/platform-api-reference#ssl-endpoint-list)
pub struct SSLList<'a> {
    /// app_id can be the app name or id.
    pub app_id: &'a str,
}

impl<'a> SSLList<'a> {
    pub fn new(app_id: &'a str) -> SSLList<'a> {
        SSLList { app_id }
    }
}

impl<'a> HerokuEndpoint<Vec<SSL>> for SSLList<'a> {
    fn method(&self) -> Method {
        Method::Get
    }
    fn path(&self) -> String {
        format!("apps/{}/ssl-endpoints", self.app_id)
    }
}

/// SSL Endpoint Info
///
/// Info for existing SSL endpoint.
///
/// [See Heroku documentation for more information about this endpoint](https://devcenter.heroku.com/articles/platform-api-reference#ssl-endpoint-info)
pub struct SSLDetails<'a> {
    /// app_id can be the app name or id.
    pub app_id: &'a str,
    /// ssl unique identifier
    pub ssl_id: &'a str,
}

impl<'a> SSLDetails<'a> {
    pub fn new(app_id: &'a str, ssl_id: &'a str) -> SSLDetails<'a> {
        SSLDetails { app_id, ssl_id }
    }
}

impl<'a> HerokuEndpoint<SSL> for SSLDetails<'a> {
    fn method(&self) -> Method {
        Method::Get
    }
    fn path(&self) -> String {
        format!("apps/{}/ssl-endpoints/{}", self.app_id, self.ssl_id)
    }
}

/// App Webhook Event Info
///
/// Returns the info for a specified webhook event.
///
/// [See Heroku documentation for more information about this endpoint](https://devcenter.heroku.com/articles/platform-api-reference#app-webhook-event-info)
pub struct WebhookEventDetails<'a> {
    /// app_id can be the app name or id.
    pub app_id: &'a str,
    /// webhook event's unique identifier
    pub event_id: &'a str,
}

impl<'a> WebhookEventDetails<'a> {
    pub fn new(app_id: &'a str, event_id: &'a str) -> WebhookEventDetails<'a> {
        WebhookEventDetails { app_id, event_id }
    }
}

impl<'a> HerokuEndpoint<WebhookEvent> for WebhookEventDetails<'a> {
    fn method(&self) -> Method {
        Method::Get
    }
    fn path(&self) -> String {
        format!("apps/{}/webhook-events/{}", self.app_id, self.event_id)
    }
}

/// App Webhook Event List
///
/// Lists existing webhook events for an app.
///
/// [See Heroku documentation for more information about this endpoint](https://devcenter.heroku.com/articles/platform-api-reference#app-webhook-event-list)
pub struct WebhookEventList<'a> {
    /// app_id can be the app name or id.
    pub app_id: &'a str,
}

impl<'a> WebhookEventList<'a> {
    pub fn new(app_id: &'a str) -> WebhookEventList<'a> {
        WebhookEventList { app_id }
    }
}

impl<'a> HerokuEndpoint<Vec<WebhookEvent>> for WebhookEventList<'a> {
    fn method(&self) -> Method {
        Method::Get
    }
    fn path(&self) -> String {
        format!("apps/{}/webhook-events", self.app_id)
    }
}