You've already forked authentication-service
mirror of
https://github.com/matrix-org/matrix-authentication-service.git
synced 2025-09-11 22:30:47 +03:00
132 lines
2.6 KiB
Rust
132 lines
2.6 KiB
Rust
// Copyright 2023 The Matrix.org Foundation C.I.C.
|
|
//
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
// you may not use this file except in compliance with the License.
|
|
// You may obtain a copy of the License at
|
|
//
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
// See the License for the specific language governing permissions and
|
|
// limitations under the License.
|
|
|
|
//! Table and column identifiers used by [`sea_query`]
|
|
|
|
#[derive(sea_query::Iden)]
|
|
pub enum UserSessions {
|
|
Table,
|
|
UserSessionId,
|
|
UserId,
|
|
CreatedAt,
|
|
FinishedAt,
|
|
UserAgent,
|
|
LastActiveAt,
|
|
LastActiveIp,
|
|
}
|
|
|
|
#[derive(sea_query::Iden)]
|
|
pub enum Users {
|
|
Table,
|
|
UserId,
|
|
Username,
|
|
PrimaryUserEmailId,
|
|
CreatedAt,
|
|
LockedAt,
|
|
CanRequestAdmin,
|
|
}
|
|
|
|
#[derive(sea_query::Iden)]
|
|
pub enum UserEmails {
|
|
Table,
|
|
UserEmailId,
|
|
UserId,
|
|
Email,
|
|
CreatedAt,
|
|
ConfirmedAt,
|
|
}
|
|
|
|
#[derive(sea_query::Iden)]
|
|
pub enum CompatSessions {
|
|
Table,
|
|
CompatSessionId,
|
|
UserId,
|
|
DeviceId,
|
|
UserSessionId,
|
|
CreatedAt,
|
|
FinishedAt,
|
|
IsSynapseAdmin,
|
|
UserAgent,
|
|
LastActiveAt,
|
|
LastActiveIp,
|
|
}
|
|
|
|
#[derive(sea_query::Iden)]
|
|
pub enum CompatSsoLogins {
|
|
Table,
|
|
CompatSsoLoginId,
|
|
RedirectUri,
|
|
LoginToken,
|
|
CompatSessionId,
|
|
CreatedAt,
|
|
FulfilledAt,
|
|
ExchangedAt,
|
|
}
|
|
|
|
#[derive(sea_query::Iden)]
|
|
#[iden = "oauth2_sessions"]
|
|
pub enum OAuth2Sessions {
|
|
Table,
|
|
#[iden = "oauth2_session_id"]
|
|
OAuth2SessionId,
|
|
UserId,
|
|
UserSessionId,
|
|
#[iden = "oauth2_client_id"]
|
|
OAuth2ClientId,
|
|
ScopeList,
|
|
CreatedAt,
|
|
FinishedAt,
|
|
UserAgent,
|
|
LastActiveAt,
|
|
LastActiveIp,
|
|
}
|
|
|
|
#[derive(sea_query::Iden)]
|
|
#[iden = "upstream_oauth_providers"]
|
|
pub enum UpstreamOAuthProviders {
|
|
Table,
|
|
#[iden = "upstream_oauth_provider_id"]
|
|
UpstreamOAuthProviderId,
|
|
Issuer,
|
|
HumanName,
|
|
BrandName,
|
|
Scope,
|
|
ClientId,
|
|
EncryptedClientSecret,
|
|
TokenEndpointSigningAlg,
|
|
TokenEndpointAuthMethod,
|
|
CreatedAt,
|
|
DisabledAt,
|
|
ClaimsImports,
|
|
DiscoveryMode,
|
|
PkceMode,
|
|
AdditionalParameters,
|
|
JwksUriOverride,
|
|
TokenEndpointOverride,
|
|
AuthorizationEndpointOverride,
|
|
}
|
|
|
|
#[derive(sea_query::Iden)]
|
|
#[iden = "upstream_oauth_links"]
|
|
pub enum UpstreamOAuthLinks {
|
|
Table,
|
|
#[iden = "upstream_oauth_link_id"]
|
|
UpstreamOAuthLinkId,
|
|
#[iden = "upstream_oauth_provider_id"]
|
|
UpstreamOAuthProviderId,
|
|
UserId,
|
|
Subject,
|
|
CreatedAt,
|
|
}
|