shared/api/endpoints/
jig.rs

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
use crate::{
    api::Method,
    domain::{
        jig::{
            GetJigPlaylistsPath, GetJigPlaylistsResponse, JigAdminDataUpdatePath,
            JigAdminTransferRequest, JigBrowsePath, JigBrowseQuery, JigBrowseResponse,
            JigClonePath, JigCountPath, JigCountResponse, JigCoverPath, JigCreatePath,
            JigCreateRequest, JigDeleteAllPath, JigDeletePath, JigFeaturedPath,
            JigFeaturedResponse, JigFeaturedUpdateRequest, JigGetDraftPath, JigGetLivePath, JigId,
            JigLikePath, JigLikedPath, JigLikedResponse, JigPlayPath, JigPublishPath, JigResponse,
            JigSearchPath, JigSearchQuery, JigSearchResponse, JigTransferAdminPath,
            JigTrendingPath, JigTrendingResponse, JigUnlikePath, JigUpdateAdminDataRequest,
            JigUpdateDraftDataPath, JigUpdateDraftDataRequest, ListLikedPath, ListLikedRequest,
            ListLikedResponse, ListPlayedPath, ListPlayedRequest, ListPlayedResponse,
        },
        CreateResponse,
    },
    error::{EmptyError, MetadataNotFound},
};

use super::ApiEndpoint;

/// Endpoints for jig codes.
pub mod codes;

/// Endpoints for jig curation.
pub mod curation;

/// Endpoints for jig reports.
pub mod report;

/// Create a JIG and it's draft and live data copies.
///
/// * New jigs are all set to `PrivacyLevel::Unlisted` by default
///
/// # Flow:
/// 1. Create a JIG and its two data copies with [`Create`]
/// 2. Optionally update JIG info such as privacy, author with [`Update`]
/// 3. Make updates to draft data:
///     a. Patch Jig data through [`UpdateDraftData`]
///     b. Modify modules, through [`module::Update`]
/// 4. Finalize draft changes by calling [`Publish`]
///
/// # Authorization
/// * One of `Admin`, `AdminAsset`, or `ManageSelfAsset`
pub struct Create;
impl ApiEndpoint for Create {
    type Req = JigCreateRequest;
    type Res = CreateResponse<JigId>;
    type Path = JigCreatePath;
    type Err = MetadataNotFound;
    const METHOD: Method = Method::Post;
}

/// Get a JIG's live data by ID.
///
/// # Authorization
/// * None
///
/// # Errors
/// * [`NotFound`](http::StatusCode::NOT_FOUND) if the module does not exist, or the parent jig doesn't exist.
pub struct GetLive;
impl ApiEndpoint for GetLive {
    type Req = ();
    type Res = JigResponse;
    type Path = JigGetLivePath;
    type Err = EmptyError;
    const METHOD: Method = Method::Get;
}

/// Get a JIG's draft data by ID.
///
/// # Authorization
/// * One of `Admin`, `AdminAsset`,, or `ManageSelfAsset` for owned JIGs
///
/// # Errors
/// * [`Unauthorized`](http::StatusCode::UNAUTHORIZED) if authorization is not valid.
/// * [`NotFound`](http::StatusCode::NOT_FOUND) if the module does not exist, or the parent jig doesn't exist.
pub struct GetDraft;
impl ApiEndpoint for GetDraft {
    type Req = ();
    type Res = JigResponse;
    type Path = JigGetDraftPath;
    type Err = EmptyError;
    const METHOD: Method = Method::Get;
}

/// Update the draft data of a JIG.
///
/// Note that a copy of the JIG's draft or live data can not be fetched directly, but only as a part
/// of one of the following routes:
/// * [`GetLive`] fetches live copies
/// * [`Search`]
///
/// See [`JigData`](crate::domain::jig::JigData) for the over-the-wire representation.
///
/// # Authorization
/// * One of `Admin`, `AdminAsset`,, or `ManageSelfAsset` for owned JIGs
pub struct UpdateDraftData;
impl ApiEndpoint for UpdateDraftData {
    type Req = JigUpdateDraftDataRequest;
    type Res = ();
    type Path = JigUpdateDraftDataPath;
    type Err = MetadataNotFound;
    const METHOD: Method = Method::Patch;
}

/// Publish a JIG draft to live by copying over the JIG and module data.
///
/// # Authorization
/// * None
pub struct Publish;
impl ApiEndpoint for Publish {
    type Req = ();
    type Res = ();
    type Path = JigPublishPath;
    type Err = EmptyError;
    const METHOD: Method = Method::Put;
}

/// Browse JIGs. Returns the draft data copies in the response.
///
/// # Authorization
/// * One of `Admin`, `AdminAsset`, or `ManageSelfAsset`
// TODO: Think there should be a BrowseLive and a BrowseDraft endpoint.
pub struct Browse;
impl ApiEndpoint for Browse {
    type Req = JigBrowseQuery;
    type Res = JigBrowseResponse;
    type Path = JigBrowsePath;
    type Err = EmptyError;
    const METHOD: Method = Method::Get;
}

/// Search for JIGs.
///
/// # Authorization
/// * None
pub struct Search;
impl ApiEndpoint for Search {
    type Req = JigSearchQuery;
    type Res = JigSearchResponse;
    type Path = JigSearchPath;
    type Err = EmptyError;
    const METHOD: Method = Method::Get;
}

/// Trending JIGs.
pub struct Trending;
impl ApiEndpoint for Trending {
    type Req = ();
    type Res = JigTrendingResponse;
    type Path = JigTrendingPath;
    type Err = EmptyError;
    const METHOD: Method = Method::Get;
}

/// List user's liked JIGs.
pub struct ListLiked;
impl ApiEndpoint for ListLiked {
    type Req = ListLikedRequest;
    type Res = ListLikedResponse;
    type Path = ListLikedPath;
    type Err = EmptyError;
    const METHOD: Method = Method::Get;
}

/// List user's played JIGs.
pub struct ListPlayed;
impl ApiEndpoint for ListPlayed {
    type Req = ListPlayedRequest;
    type Res = ListPlayedResponse;
    type Path = ListPlayedPath;
    type Err = EmptyError;
    const METHOD: Method = Method::Get;
}

/// Featured JIGs.
pub struct Featured;
impl ApiEndpoint for Featured {
    type Req = ();
    type Res = JigFeaturedResponse;
    type Path = JigFeaturedPath;
    type Err = EmptyError;
    const METHOD: Method = Method::Get;
}

/// Update featured JIGs.
pub struct FeaturedUpdate;
impl ApiEndpoint for FeaturedUpdate {
    type Req = JigFeaturedUpdateRequest;
    type Res = ();
    type Path = JigFeaturedPath;
    type Err = EmptyError;
    const METHOD: Method = Method::Put;
}

/// Clone a JIG. This clones both the draft and live.
///
/// # Authorization
/// * One of `Admin`, `AdminAsset`, or `ManageSelfAsset`
///
/// # Errors
/// * [`Unauthorized`](http::StatusCode::UNAUTHORIZED) if authorization is not valid.
/// * [`Forbidden`](http::StatusCode::FORBIDDEN) if the user does not have sufficient permission to perform the action.
/// * ['NotFound'](http::StatusCode::NOT_FOUND) if the jig does not exist.
/// * ['BadRequest'](http::StatusCode::BAD_REQUEST) if the request is malformed or the JIG is a draft.
pub struct Clone;
impl ApiEndpoint for Clone {
    type Req = ();
    type Res = CreateResponse<JigId>;
    type Path = JigClonePath;
    type Err = EmptyError;
    const METHOD: Method = Method::Post;
}

/// Delete a JIG.
///
/// # Authorization
/// * One of `Admin`, `AdminAsset`, or `ManageSelfAsset` for owned JIGs
pub struct Delete;
impl ApiEndpoint for Delete {
    type Req = ();
    type Res = ();
    type Path = JigDeletePath;
    type Err = EmptyError;
    const METHOD: Method = Method::Delete;
}

/// Delete all jigs associated with current user.
///
/// # Authorization
/// * One of `Admin`, `AdminAsset`, or `ManageSelfAsset` for owned JIGs
pub struct DeleteAll;
impl ApiEndpoint for DeleteAll {
    type Req = ();
    type Res = ();
    type Path = JigDeleteAllPath;
    type Err = EmptyError;
    const METHOD: Method = Method::Delete;
}

/// Indicates that a jig has a cover
///
/// # Authorization
/// * One of `Admin`, `AdminAsset`, or `ManageSelfAsset` for owned JIGs
pub struct Cover;
impl ApiEndpoint for Cover {
    type Req = ();
    type Res = ();
    type Path = JigCoverPath;
    type Err = EmptyError;
    const METHOD: Method = Method::Patch;
}

/// Count of all public JIGs. See [`PrivacyLevel`](crate::domain::jig::PrivacyLevel).
///
/// # Authorization
/// * None
pub struct Count;
impl ApiEndpoint for Count {
    type Req = ();
    type Res = JigCountResponse;
    type Path = JigCountPath;
    type Err = EmptyError;
    const METHOD: Method = Method::Get;
}

/// Like a JIG
///
/// # Authorization
/// * Admin, BasicAuth
pub struct Like;
impl ApiEndpoint for Like {
    type Req = ();
    type Res = ();
    type Path = JigLikePath;
    type Err = EmptyError;
    const METHOD: Method = Method::Put;
}

/// Unlike a JIG
///
/// # Authorization
/// * Admin, BasicAuth
pub struct Unlike;
impl ApiEndpoint for Unlike {
    type Req = ();
    type Res = ();
    type Path = JigUnlikePath;
    type Err = EmptyError;
    const METHOD: Method = Method::Delete;
}

/// Is a JIG liked by a user
///
/// # Authorization
/// * Admin, BasicAuth
pub struct Liked;
impl ApiEndpoint for Liked {
    type Req = ();
    type Res = JigLikedResponse;
    type Path = JigLikedPath;
    type Err = EmptyError;
    const METHOD: Method = Method::Get;
}

/// Play a JIG
///
/// # Authorization
/// * None
pub struct Play;
impl ApiEndpoint for Play {
    type Req = ();
    type Res = ();
    type Path = JigPlayPath;
    type Err = EmptyError;
    const METHOD: Method = Method::Put;
}

/// Update an admin data for a JIG.
///
/// # Authorization
///
/// * Standard + [`UserScope::ManageJig`](crate::domain::user::UserScope)
///
/// # Errors
///
/// * [`Unauthorized`](http::StatusCode::UNAUTHORIZED) if authorization is not valid.
/// * [`Forbidden`](http::StatusCode::FORBIDDEN) if the user does not have sufficient permission to perform the action.
/// * [`BadRequest`](http::StatusCode::BAD_REQUEST) if the request is missing/invalid.
pub struct JigAdminDataUpdate;
impl ApiEndpoint for JigAdminDataUpdate {
    type Req = JigUpdateAdminDataRequest;
    type Res = ();
    type Path = JigAdminDataUpdatePath;
    type Err = EmptyError;
    const METHOD: Method = Method::Patch;
}

/// Update an admin data for a JIG.
///
/// # Authorization
///
/// * Standard + [`UserScope::ManageJig`](crate::domain::user::UserScope)
///
/// # Errors
///
/// * [`Unauthorized`](http::StatusCode::UNAUTHORIZED) if authorization is not valid.
/// * [`Forbidden`](http::StatusCode::FORBIDDEN) if the user does not have sufficient permission to perform the action.
/// * [`BadRequest`](http::StatusCode::BAD_REQUEST) if the request is missing/invalid.
pub struct JigAdminTransfer;
impl ApiEndpoint for JigAdminTransfer {
    type Req = JigAdminTransferRequest;
    type Res = ();
    type Path = JigTransferAdminPath;
    type Err = EmptyError;
    const METHOD: Method = Method::Post;
}

/// Remove resource from jigs algolia
///
/// # NOTE
/// * remove after resources are separated
///
/// # Authorization
/// * Admin
pub struct RemoveResource;
impl ApiEndpoint for RemoveResource {
    type Path = RemoveResourcePath;
    type Req = ();
    type Res = ();
    type Err = EmptyError;
    const METHOD: Method = Method::Delete;
}
use crate::api::endpoints::PathPart;
macros::make_path_parts!(RemoveResourcePath => "/v1/jig/{}/resources" => JigId);

/// Playlists containing JIG id
///
/// # Authorization
/// * Standard + [`UserScope::ManageJig`](crate::domain::user::UserScope)
///
pub struct GetJigPlaylists;
impl ApiEndpoint for GetJigPlaylists {
    type Req = ();
    type Res = GetJigPlaylistsResponse;
    type Path = GetJigPlaylistsPath;
    type Err = EmptyError;
    const METHOD: Method = Method::Get;
}