mas_router/
endpoints.rs

1// Copyright 2024 New Vector Ltd.
2// Copyright 2022-2024 The Matrix.org Foundation C.I.C.
3//
4// SPDX-License-Identifier: AGPL-3.0-only
5// Please see LICENSE in the repository root for full details.
6
7use serde::{Deserialize, Serialize};
8use ulid::Ulid;
9
10use crate::UrlBuilder;
11pub use crate::traits::*;
12
13#[derive(Deserialize, Serialize, Clone, Debug)]
14#[serde(rename_all = "snake_case", tag = "kind")]
15pub enum PostAuthAction {
16    ContinueAuthorizationGrant {
17        id: Ulid,
18    },
19    ContinueDeviceCodeGrant {
20        id: Ulid,
21    },
22    ContinueCompatSsoLogin {
23        id: Ulid,
24    },
25    ChangePassword,
26    LinkUpstream {
27        id: Ulid,
28    },
29    ManageAccount {
30        #[serde(flatten)]
31        action: Option<AccountAction>,
32    },
33}
34
35impl PostAuthAction {
36    #[must_use]
37    pub const fn continue_grant(id: Ulid) -> Self {
38        PostAuthAction::ContinueAuthorizationGrant { id }
39    }
40
41    #[must_use]
42    pub const fn continue_device_code_grant(id: Ulid) -> Self {
43        PostAuthAction::ContinueDeviceCodeGrant { id }
44    }
45
46    #[must_use]
47    pub const fn continue_compat_sso_login(id: Ulid) -> Self {
48        PostAuthAction::ContinueCompatSsoLogin { id }
49    }
50
51    #[must_use]
52    pub const fn link_upstream(id: Ulid) -> Self {
53        PostAuthAction::LinkUpstream { id }
54    }
55
56    #[must_use]
57    pub const fn manage_account(action: Option<AccountAction>) -> Self {
58        PostAuthAction::ManageAccount { action }
59    }
60
61    pub fn go_next(&self, url_builder: &UrlBuilder) -> axum::response::Redirect {
62        match self {
63            Self::ContinueAuthorizationGrant { id } => url_builder.redirect(&Consent(*id)),
64            Self::ContinueDeviceCodeGrant { id } => {
65                url_builder.redirect(&DeviceCodeConsent::new(*id))
66            }
67            Self::ContinueCompatSsoLogin { id } => {
68                url_builder.redirect(&CompatLoginSsoComplete::new(*id, None))
69            }
70            Self::ChangePassword => url_builder.redirect(&AccountPasswordChange),
71            Self::LinkUpstream { id } => url_builder.redirect(&UpstreamOAuth2Link::new(*id)),
72            Self::ManageAccount { action } => url_builder.redirect(&Account {
73                action: action.clone(),
74            }),
75        }
76    }
77}
78
79/// `GET /.well-known/openid-configuration`
80#[derive(Default, Debug, Clone)]
81pub struct OidcConfiguration;
82
83impl SimpleRoute for OidcConfiguration {
84    const PATH: &'static str = "/.well-known/openid-configuration";
85}
86
87/// `GET /.well-known/webfinger`
88#[derive(Default, Debug, Clone)]
89pub struct Webfinger;
90
91impl SimpleRoute for Webfinger {
92    const PATH: &'static str = "/.well-known/webfinger";
93}
94
95/// `GET /.well-known/change-password`
96pub struct ChangePasswordDiscovery;
97
98impl SimpleRoute for ChangePasswordDiscovery {
99    const PATH: &'static str = "/.well-known/change-password";
100}
101
102/// `GET /oauth2/keys.json`
103#[derive(Default, Debug, Clone)]
104pub struct OAuth2Keys;
105
106impl SimpleRoute for OAuth2Keys {
107    const PATH: &'static str = "/oauth2/keys.json";
108}
109
110/// `GET /oauth2/userinfo`
111#[derive(Default, Debug, Clone)]
112pub struct OidcUserinfo;
113
114impl SimpleRoute for OidcUserinfo {
115    const PATH: &'static str = "/oauth2/userinfo";
116}
117
118/// `POST /oauth2/introspect`
119#[derive(Default, Debug, Clone)]
120pub struct OAuth2Introspection;
121
122impl SimpleRoute for OAuth2Introspection {
123    const PATH: &'static str = "/oauth2/introspect";
124}
125
126/// `POST /oauth2/revoke`
127#[derive(Default, Debug, Clone)]
128pub struct OAuth2Revocation;
129
130impl SimpleRoute for OAuth2Revocation {
131    const PATH: &'static str = "/oauth2/revoke";
132}
133
134/// `POST /oauth2/token`
135#[derive(Default, Debug, Clone)]
136pub struct OAuth2TokenEndpoint;
137
138impl SimpleRoute for OAuth2TokenEndpoint {
139    const PATH: &'static str = "/oauth2/token";
140}
141
142/// `POST /oauth2/registration`
143#[derive(Default, Debug, Clone)]
144pub struct OAuth2RegistrationEndpoint;
145
146impl SimpleRoute for OAuth2RegistrationEndpoint {
147    const PATH: &'static str = "/oauth2/registration";
148}
149
150/// `GET /authorize`
151#[derive(Default, Debug, Clone)]
152pub struct OAuth2AuthorizationEndpoint;
153
154impl SimpleRoute for OAuth2AuthorizationEndpoint {
155    const PATH: &'static str = "/authorize";
156}
157
158/// `GET /`
159#[derive(Default, Debug, Clone)]
160pub struct Index;
161
162impl SimpleRoute for Index {
163    const PATH: &'static str = "/";
164}
165
166/// `GET /health`
167#[derive(Default, Debug, Clone)]
168pub struct Healthcheck;
169
170impl SimpleRoute for Healthcheck {
171    const PATH: &'static str = "/health";
172}
173
174/// `GET|POST /login`
175#[derive(Default, Debug, Clone)]
176pub struct Login {
177    post_auth_action: Option<PostAuthAction>,
178}
179
180impl Route for Login {
181    type Query = PostAuthAction;
182
183    fn route() -> &'static str {
184        "/login"
185    }
186
187    fn query(&self) -> Option<&Self::Query> {
188        self.post_auth_action.as_ref()
189    }
190}
191
192impl Login {
193    #[must_use]
194    pub const fn and_then(action: PostAuthAction) -> Self {
195        Self {
196            post_auth_action: Some(action),
197        }
198    }
199
200    #[must_use]
201    pub const fn and_continue_grant(id: Ulid) -> Self {
202        Self {
203            post_auth_action: Some(PostAuthAction::continue_grant(id)),
204        }
205    }
206
207    #[must_use]
208    pub const fn and_continue_device_code_grant(id: Ulid) -> Self {
209        Self {
210            post_auth_action: Some(PostAuthAction::continue_device_code_grant(id)),
211        }
212    }
213
214    #[must_use]
215    pub const fn and_continue_compat_sso_login(id: Ulid) -> Self {
216        Self {
217            post_auth_action: Some(PostAuthAction::continue_compat_sso_login(id)),
218        }
219    }
220
221    #[must_use]
222    pub const fn and_link_upstream(id: Ulid) -> Self {
223        Self {
224            post_auth_action: Some(PostAuthAction::link_upstream(id)),
225        }
226    }
227
228    /// Get a reference to the login's post auth action.
229    #[must_use]
230    pub fn post_auth_action(&self) -> Option<&PostAuthAction> {
231        self.post_auth_action.as_ref()
232    }
233
234    pub fn go_next(&self, url_builder: &UrlBuilder) -> axum::response::Redirect {
235        match &self.post_auth_action {
236            Some(action) => action.go_next(url_builder),
237            None => url_builder.redirect(&Index),
238        }
239    }
240}
241
242impl From<Option<PostAuthAction>> for Login {
243    fn from(post_auth_action: Option<PostAuthAction>) -> Self {
244        Self { post_auth_action }
245    }
246}
247
248/// `POST /logout`
249#[derive(Default, Debug, Clone)]
250pub struct Logout;
251
252impl SimpleRoute for Logout {
253    const PATH: &'static str = "/logout";
254}
255
256/// `POST /register`
257#[derive(Default, Debug, Clone)]
258pub struct Register {
259    post_auth_action: Option<PostAuthAction>,
260}
261
262impl Register {
263    #[must_use]
264    pub fn and_then(action: PostAuthAction) -> Self {
265        Self {
266            post_auth_action: Some(action),
267        }
268    }
269
270    #[must_use]
271    pub fn and_continue_grant(data: Ulid) -> Self {
272        Self {
273            post_auth_action: Some(PostAuthAction::continue_grant(data)),
274        }
275    }
276
277    #[must_use]
278    pub fn and_continue_compat_sso_login(data: Ulid) -> Self {
279        Self {
280            post_auth_action: Some(PostAuthAction::continue_compat_sso_login(data)),
281        }
282    }
283
284    /// Get a reference to the reauth's post auth action.
285    #[must_use]
286    pub fn post_auth_action(&self) -> Option<&PostAuthAction> {
287        self.post_auth_action.as_ref()
288    }
289
290    pub fn go_next(&self, url_builder: &UrlBuilder) -> axum::response::Redirect {
291        match &self.post_auth_action {
292            Some(action) => action.go_next(url_builder),
293            None => url_builder.redirect(&Index),
294        }
295    }
296}
297
298impl Route for Register {
299    type Query = PostAuthAction;
300
301    fn route() -> &'static str {
302        "/register"
303    }
304
305    fn query(&self) -> Option<&Self::Query> {
306        self.post_auth_action.as_ref()
307    }
308}
309
310impl From<Option<PostAuthAction>> for Register {
311    fn from(post_auth_action: Option<PostAuthAction>) -> Self {
312        Self { post_auth_action }
313    }
314}
315
316/// `GET|POST /register/password`
317#[derive(Default, Debug, Clone, Serialize, Deserialize)]
318pub struct PasswordRegister {
319    username: Option<String>,
320
321    #[serde(flatten)]
322    post_auth_action: Option<PostAuthAction>,
323}
324
325impl PasswordRegister {
326    #[must_use]
327    pub fn and_then(mut self, action: PostAuthAction) -> Self {
328        self.post_auth_action = Some(action);
329        self
330    }
331
332    #[must_use]
333    pub fn and_continue_grant(mut self, data: Ulid) -> Self {
334        self.post_auth_action = Some(PostAuthAction::continue_grant(data));
335        self
336    }
337
338    #[must_use]
339    pub fn and_continue_compat_sso_login(mut self, data: Ulid) -> Self {
340        self.post_auth_action = Some(PostAuthAction::continue_compat_sso_login(data));
341        self
342    }
343
344    /// Get a reference to the post auth action.
345    #[must_use]
346    pub fn post_auth_action(&self) -> Option<&PostAuthAction> {
347        self.post_auth_action.as_ref()
348    }
349
350    /// Get a reference to the username chosen by the user.
351    #[must_use]
352    pub fn username(&self) -> Option<&str> {
353        self.username.as_deref()
354    }
355
356    pub fn go_next(&self, url_builder: &UrlBuilder) -> axum::response::Redirect {
357        match &self.post_auth_action {
358            Some(action) => action.go_next(url_builder),
359            None => url_builder.redirect(&Index),
360        }
361    }
362}
363
364impl Route for PasswordRegister {
365    type Query = Self;
366
367    fn route() -> &'static str {
368        "/register/password"
369    }
370
371    fn query(&self) -> Option<&Self::Query> {
372        Some(self)
373    }
374}
375
376impl From<Option<PostAuthAction>> for PasswordRegister {
377    fn from(post_auth_action: Option<PostAuthAction>) -> Self {
378        Self {
379            username: None,
380            post_auth_action,
381        }
382    }
383}
384
385/// `GET|POST /register/steps/{id}/display-name`
386#[derive(Debug, Clone)]
387pub struct RegisterDisplayName {
388    id: Ulid,
389}
390
391impl RegisterDisplayName {
392    #[must_use]
393    pub fn new(id: Ulid) -> Self {
394        Self { id }
395    }
396}
397
398impl Route for RegisterDisplayName {
399    type Query = ();
400    fn route() -> &'static str {
401        "/register/steps/{id}/display-name"
402    }
403
404    fn path(&self) -> std::borrow::Cow<'static, str> {
405        format!("/register/steps/{}/display-name", self.id).into()
406    }
407}
408
409/// `GET|POST /register/steps/{id}/verify-email`
410#[derive(Debug, Clone)]
411pub struct RegisterVerifyEmail {
412    id: Ulid,
413}
414
415impl RegisterVerifyEmail {
416    #[must_use]
417    pub fn new(id: Ulid) -> Self {
418        Self { id }
419    }
420}
421
422impl Route for RegisterVerifyEmail {
423    type Query = ();
424    fn route() -> &'static str {
425        "/register/steps/{id}/verify-email"
426    }
427
428    fn path(&self) -> std::borrow::Cow<'static, str> {
429        format!("/register/steps/{}/verify-email", self.id).into()
430    }
431}
432
433/// `GET /register/steps/{id}/finish`
434#[derive(Debug, Clone)]
435pub struct RegisterFinish {
436    id: Ulid,
437}
438
439impl RegisterFinish {
440    #[must_use]
441    pub const fn new(id: Ulid) -> Self {
442        Self { id }
443    }
444}
445
446impl Route for RegisterFinish {
447    type Query = ();
448    fn route() -> &'static str {
449        "/register/steps/{id}/finish"
450    }
451
452    fn path(&self) -> std::borrow::Cow<'static, str> {
453        format!("/register/steps/{}/finish", self.id).into()
454    }
455}
456
457/// Actions parameters as defined by MSC2965
458#[derive(Debug, Clone, Serialize, Deserialize)]
459#[serde(tag = "action")]
460pub enum AccountAction {
461    #[serde(rename = "org.matrix.profile")]
462    OrgMatrixProfile,
463    #[serde(rename = "profile")]
464    Profile,
465
466    #[serde(rename = "org.matrix.sessions_list")]
467    OrgMatrixSessionsList,
468    #[serde(rename = "sessions_list")]
469    SessionsList,
470
471    #[serde(rename = "org.matrix.session_view")]
472    OrgMatrixSessionView { device_id: String },
473    #[serde(rename = "session_view")]
474    SessionView { device_id: String },
475
476    #[serde(rename = "org.matrix.session_end")]
477    OrgMatrixSessionEnd { device_id: String },
478    #[serde(rename = "session_end")]
479    SessionEnd { device_id: String },
480
481    #[serde(rename = "org.matrix.cross_signing_reset")]
482    OrgMatrixCrossSigningReset,
483}
484
485/// `GET /account/`
486#[derive(Default, Debug, Clone)]
487pub struct Account {
488    action: Option<AccountAction>,
489}
490
491impl Route for Account {
492    type Query = AccountAction;
493
494    fn route() -> &'static str {
495        "/account/"
496    }
497
498    fn query(&self) -> Option<&Self::Query> {
499        self.action.as_ref()
500    }
501}
502
503/// `GET /account/*`
504#[derive(Default, Debug, Clone)]
505pub struct AccountWildcard;
506
507impl SimpleRoute for AccountWildcard {
508    const PATH: &'static str = "/account/{*rest}";
509}
510
511/// `GET /account/password/change`
512///
513/// Handled by the React frontend; this struct definition is purely for
514/// redirects.
515#[derive(Default, Debug, Clone)]
516pub struct AccountPasswordChange;
517
518impl SimpleRoute for AccountPasswordChange {
519    const PATH: &'static str = "/account/password/change";
520}
521
522/// `GET /consent/{grant_id}`
523#[derive(Debug, Clone)]
524pub struct Consent(pub Ulid);
525
526impl Route for Consent {
527    type Query = ();
528    fn route() -> &'static str {
529        "/consent/{grant_id}"
530    }
531
532    fn path(&self) -> std::borrow::Cow<'static, str> {
533        format!("/consent/{}", self.0).into()
534    }
535}
536
537/// `GET|POST /_matrix/client/v3/login`
538pub struct CompatLogin;
539
540impl SimpleRoute for CompatLogin {
541    const PATH: &'static str = "/_matrix/client/{version}/login";
542}
543
544/// `POST /_matrix/client/v3/logout`
545pub struct CompatLogout;
546
547impl SimpleRoute for CompatLogout {
548    const PATH: &'static str = "/_matrix/client/{version}/logout";
549}
550
551/// `POST /_matrix/client/v3/refresh`
552pub struct CompatRefresh;
553
554impl SimpleRoute for CompatRefresh {
555    const PATH: &'static str = "/_matrix/client/{version}/refresh";
556}
557
558/// `GET /_matrix/client/v3/login/sso/redirect`
559pub struct CompatLoginSsoRedirect;
560
561impl SimpleRoute for CompatLoginSsoRedirect {
562    const PATH: &'static str = "/_matrix/client/{version}/login/sso/redirect";
563}
564
565/// `GET /_matrix/client/v3/login/sso/redirect/`
566///
567/// This is a workaround for the fact some clients (Element iOS) sends a
568/// trailing slash, even though it's not in the spec.
569pub struct CompatLoginSsoRedirectSlash;
570
571impl SimpleRoute for CompatLoginSsoRedirectSlash {
572    const PATH: &'static str = "/_matrix/client/{version}/login/sso/redirect/";
573}
574
575/// `GET /_matrix/client/v3/login/sso/redirect/{idp}`
576pub struct CompatLoginSsoRedirectIdp;
577
578impl SimpleRoute for CompatLoginSsoRedirectIdp {
579    const PATH: &'static str = "/_matrix/client/{version}/login/sso/redirect/{idp}";
580}
581
582#[derive(Debug, Serialize, Deserialize, Clone, Copy)]
583#[serde(rename_all = "lowercase")]
584pub enum CompatLoginSsoAction {
585    Login,
586    Register,
587}
588
589#[derive(Debug, Serialize, Deserialize, Clone, Copy)]
590pub struct CompatLoginSsoActionParams {
591    #[serde(rename = "org.matrix.msc3824.action")]
592    action: CompatLoginSsoAction,
593}
594
595/// `GET|POST /complete-compat-sso/{id}`
596pub struct CompatLoginSsoComplete {
597    id: Ulid,
598    query: Option<CompatLoginSsoActionParams>,
599}
600
601impl CompatLoginSsoComplete {
602    #[must_use]
603    pub fn new(id: Ulid, action: Option<CompatLoginSsoAction>) -> Self {
604        Self {
605            id,
606            query: action.map(|action| CompatLoginSsoActionParams { action }),
607        }
608    }
609}
610
611impl Route for CompatLoginSsoComplete {
612    type Query = CompatLoginSsoActionParams;
613
614    fn query(&self) -> Option<&Self::Query> {
615        self.query.as_ref()
616    }
617
618    fn route() -> &'static str {
619        "/complete-compat-sso/{grant_id}"
620    }
621
622    fn path(&self) -> std::borrow::Cow<'static, str> {
623        format!("/complete-compat-sso/{}", self.id).into()
624    }
625}
626
627/// `GET /upstream/authorize/{id}`
628pub struct UpstreamOAuth2Authorize {
629    id: Ulid,
630    post_auth_action: Option<PostAuthAction>,
631}
632
633impl UpstreamOAuth2Authorize {
634    #[must_use]
635    pub const fn new(id: Ulid) -> Self {
636        Self {
637            id,
638            post_auth_action: None,
639        }
640    }
641
642    #[must_use]
643    pub fn and_then(mut self, action: PostAuthAction) -> Self {
644        self.post_auth_action = Some(action);
645        self
646    }
647}
648
649impl Route for UpstreamOAuth2Authorize {
650    type Query = PostAuthAction;
651    fn route() -> &'static str {
652        "/upstream/authorize/{provider_id}"
653    }
654
655    fn path(&self) -> std::borrow::Cow<'static, str> {
656        format!("/upstream/authorize/{}", self.id).into()
657    }
658
659    fn query(&self) -> Option<&Self::Query> {
660        self.post_auth_action.as_ref()
661    }
662}
663
664/// `GET /upstream/callback/{id}`
665pub struct UpstreamOAuth2Callback {
666    id: Ulid,
667}
668
669impl UpstreamOAuth2Callback {
670    #[must_use]
671    pub const fn new(id: Ulid) -> Self {
672        Self { id }
673    }
674}
675
676impl Route for UpstreamOAuth2Callback {
677    type Query = ();
678    fn route() -> &'static str {
679        "/upstream/callback/{provider_id}"
680    }
681
682    fn path(&self) -> std::borrow::Cow<'static, str> {
683        format!("/upstream/callback/{}", self.id).into()
684    }
685}
686
687/// `GET /upstream/link/{id}`
688pub struct UpstreamOAuth2Link {
689    id: Ulid,
690}
691
692impl UpstreamOAuth2Link {
693    #[must_use]
694    pub const fn new(id: Ulid) -> Self {
695        Self { id }
696    }
697}
698
699impl Route for UpstreamOAuth2Link {
700    type Query = ();
701    fn route() -> &'static str {
702        "/upstream/link/{link_id}"
703    }
704
705    fn path(&self) -> std::borrow::Cow<'static, str> {
706        format!("/upstream/link/{}", self.id).into()
707    }
708}
709
710/// `GET|POST /link`
711#[derive(Default, Serialize, Deserialize, Debug, Clone)]
712pub struct DeviceCodeLink {
713    code: Option<String>,
714}
715
716impl DeviceCodeLink {
717    #[must_use]
718    pub fn with_code(code: String) -> Self {
719        Self { code: Some(code) }
720    }
721}
722
723impl Route for DeviceCodeLink {
724    type Query = DeviceCodeLink;
725    fn route() -> &'static str {
726        "/link"
727    }
728
729    fn query(&self) -> Option<&Self::Query> {
730        Some(self)
731    }
732}
733
734/// `GET|POST /device/{device_code_id}`
735#[derive(Default, Serialize, Deserialize, Debug, Clone)]
736pub struct DeviceCodeConsent {
737    id: Ulid,
738}
739
740impl Route for DeviceCodeConsent {
741    type Query = ();
742    fn route() -> &'static str {
743        "/device/{device_code_id}"
744    }
745
746    fn path(&self) -> std::borrow::Cow<'static, str> {
747        format!("/device/{}", self.id).into()
748    }
749}
750
751impl DeviceCodeConsent {
752    #[must_use]
753    pub fn new(id: Ulid) -> Self {
754        Self { id }
755    }
756}
757
758/// `POST /oauth2/device`
759#[derive(Default, Serialize, Deserialize, Debug, Clone)]
760pub struct OAuth2DeviceAuthorizationEndpoint;
761
762impl SimpleRoute for OAuth2DeviceAuthorizationEndpoint {
763    const PATH: &'static str = "/oauth2/device";
764}
765
766/// `GET|POST /recover`
767#[derive(Default, Serialize, Deserialize, Debug, Clone)]
768pub struct AccountRecoveryStart;
769
770impl SimpleRoute for AccountRecoveryStart {
771    const PATH: &'static str = "/recover";
772}
773
774/// `GET|POST /recover/progress/{session_id}`
775#[derive(Default, Serialize, Deserialize, Debug, Clone)]
776pub struct AccountRecoveryProgress {
777    session_id: Ulid,
778}
779
780impl AccountRecoveryProgress {
781    #[must_use]
782    pub fn new(session_id: Ulid) -> Self {
783        Self { session_id }
784    }
785}
786
787impl Route for AccountRecoveryProgress {
788    type Query = ();
789    fn route() -> &'static str {
790        "/recover/progress/{session_id}"
791    }
792
793    fn path(&self) -> std::borrow::Cow<'static, str> {
794        format!("/recover/progress/{}", self.session_id).into()
795    }
796}
797
798/// `GET /account/password/recovery?ticket=:ticket`
799/// Rendered by the React frontend
800#[derive(Default, Serialize, Deserialize, Debug, Clone)]
801pub struct AccountRecoveryFinish {
802    ticket: String,
803}
804
805impl AccountRecoveryFinish {
806    #[must_use]
807    pub fn new(ticket: String) -> Self {
808        Self { ticket }
809    }
810}
811
812impl Route for AccountRecoveryFinish {
813    type Query = AccountRecoveryFinish;
814
815    fn route() -> &'static str {
816        "/account/password/recovery"
817    }
818
819    fn query(&self) -> Option<&Self::Query> {
820        Some(self)
821    }
822}
823
824/// `GET /assets`
825pub struct StaticAsset {
826    path: String,
827}
828
829impl StaticAsset {
830    #[must_use]
831    pub fn new(path: String) -> Self {
832        Self { path }
833    }
834}
835
836impl Route for StaticAsset {
837    type Query = ();
838    fn route() -> &'static str {
839        "/assets/"
840    }
841
842    fn path(&self) -> std::borrow::Cow<'static, str> {
843        format!("/assets/{}", self.path).into()
844    }
845}
846
847/// `GET|POST /graphql`
848pub struct GraphQL;
849
850impl SimpleRoute for GraphQL {
851    const PATH: &'static str = "/graphql";
852}
853
854/// `GET /graphql/playground`
855pub struct GraphQLPlayground;
856
857impl SimpleRoute for GraphQLPlayground {
858    const PATH: &'static str = "/graphql/playground";
859}
860
861/// `GET /api/spec.json`
862pub struct ApiSpec;
863
864impl SimpleRoute for ApiSpec {
865    const PATH: &'static str = "/api/spec.json";
866}
867
868/// `GET /api/doc/`
869pub struct ApiDoc;
870
871impl SimpleRoute for ApiDoc {
872    const PATH: &'static str = "/api/doc/";
873}
874
875/// `GET /api/doc/oauth2-callback`
876pub struct ApiDocCallback;
877
878impl SimpleRoute for ApiDocCallback {
879    const PATH: &'static str = "/api/doc/oauth2-callback";
880}