mirror of
https://github.com/outline/outline.git
synced 2026-06-13 03:14:59 +03:00
115 lines
2.8 KiB
TypeScript
115 lines
2.8 KiB
TypeScript
import { Matches } from "class-validator";
|
|
import type { InferAttributes, InferCreationAttributes } from "sequelize";
|
|
import {
|
|
Column,
|
|
DataType,
|
|
BelongsTo,
|
|
ForeignKey,
|
|
Table,
|
|
Length,
|
|
} from "sequelize-typescript";
|
|
import AuthenticationHelper from "@shared/helpers/AuthenticationHelper";
|
|
import { OAuthClientValidation } from "@shared/validations";
|
|
import env from "@server/env";
|
|
import User from "@server/models/User";
|
|
import IdModel from "@server/models/base/IdModel";
|
|
import { SkipChangeset } from "@server/models/decorators/Changeset";
|
|
import Fix from "@server/models/decorators/Fix";
|
|
import { hash } from "@server/utils/crypto";
|
|
import OAuthClient from "./OAuthClient";
|
|
|
|
@Table({
|
|
tableName: "oauth_authorization_codes",
|
|
modelName: "oauth_authorization_code",
|
|
updatedAt: false,
|
|
})
|
|
@Fix
|
|
class OAuthAuthorizationCode extends IdModel<
|
|
InferAttributes<OAuthAuthorizationCode>,
|
|
Partial<InferCreationAttributes<OAuthAuthorizationCode>>
|
|
> {
|
|
static eventNamespace = "oauthAuthorizationCodes";
|
|
|
|
/** The lifetime of an authorization code in seconds. */
|
|
public static authorizationCodeLifetime =
|
|
env.OAUTH_PROVIDER_AUTHORIZATION_CODE_LIFETIME;
|
|
|
|
/** A recognizable prefix for authorization codes. */
|
|
public static authorizationCodePrefix = "ol_ac_";
|
|
|
|
@Column
|
|
@SkipChangeset
|
|
authorizationCodeHash: string;
|
|
|
|
@Column
|
|
@SkipChangeset
|
|
codeChallenge?: string;
|
|
|
|
@Column
|
|
@SkipChangeset
|
|
codeChallengeMethod?: string;
|
|
|
|
/**
|
|
* The ID of the grant that this authorization code belongs to. Used for
|
|
* refresh token rotation and revocation of all tokens in a grant.
|
|
*/
|
|
@Column(DataType.UUID)
|
|
@SkipChangeset
|
|
grantId: string | null;
|
|
|
|
/** A list of scopes that this authorization code has access to */
|
|
@Matches(AuthenticationHelper.scopeGrammarRegex, {
|
|
each: true,
|
|
message: "Scope must be a valid API scope",
|
|
})
|
|
@Column(DataType.ARRAY(DataType.STRING))
|
|
scope: string[];
|
|
|
|
@Length({ max: OAuthClientValidation.maxRedirectUriLength })
|
|
@Column
|
|
redirectUri: string;
|
|
|
|
@Column(DataType.DATE)
|
|
expiresAt: Date;
|
|
|
|
// associations
|
|
|
|
@BelongsTo(() => OAuthClient, "oauthClientId")
|
|
oauthClient: OAuthClient;
|
|
|
|
@ForeignKey(() => OAuthClient)
|
|
@Column(DataType.UUID)
|
|
oauthClientId: string;
|
|
|
|
@BelongsTo(() => User, "userId")
|
|
user: User;
|
|
|
|
@ForeignKey(() => User)
|
|
@Column(DataType.UUID)
|
|
userId: string;
|
|
|
|
/**
|
|
* Finds an OAuthAuthorizationCode by the given code.
|
|
*
|
|
* @param input The code to search for
|
|
* @returns The OAuthAuthentication if found
|
|
*/
|
|
public static findByCode(input: string) {
|
|
const authorizationCodeHash = hash(input);
|
|
|
|
return this.findOne({
|
|
where: {
|
|
authorizationCodeHash,
|
|
},
|
|
include: [
|
|
{
|
|
association: "user",
|
|
required: true,
|
|
},
|
|
],
|
|
});
|
|
}
|
|
}
|
|
|
|
export default OAuthAuthorizationCode;
|