PeerTube/server/models/account/user-interface.ts

70 lines
2.5 KiB
TypeScript
Raw Normal View History

2017-05-22 20:58:25 +02:00
import * as Sequelize from 'sequelize'
2017-11-09 17:51:58 +01:00
import * as Bluebird from 'bluebird'
2017-06-10 22:15:25 +02:00
// Don't use barrel, import just what we need
2017-11-09 17:51:58 +01:00
import { AccountInstance } from './account-interface'
2017-08-25 11:45:31 +02:00
import { User as FormattedUser } from '../../../shared/models/users/user.model'
import { ResultList } from '../../../shared/models/result-list.model'
import { UserRight } from '../../../shared/models/users/user-right.enum'
import { UserRole } from '../../../shared/models/users/user-role'
2017-05-22 20:58:25 +02:00
export namespace UserMethods {
export type HasRight = (this: UserInstance, right: UserRight) => boolean
export type IsPasswordMatch = (this: UserInstance, password: string) => Promise<boolean>
2017-06-10 22:15:25 +02:00
2017-08-25 11:45:31 +02:00
export type ToFormattedJSON = (this: UserInstance) => FormattedUser
2017-09-04 20:07:54 +02:00
export type IsAbleToUploadVideo = (this: UserInstance, videoFile: Express.Multer.File) => Promise<boolean>
2017-05-22 20:58:25 +02:00
2017-11-09 17:51:58 +01:00
export type CountTotal = () => Bluebird<number>
2017-06-10 22:15:25 +02:00
2017-11-09 17:51:58 +01:00
export type GetByUsername = (username: string) => Bluebird<UserInstance>
2017-06-10 22:15:25 +02:00
2017-11-09 17:51:58 +01:00
export type ListForApi = (start: number, count: number, sort: string) => Bluebird< ResultList<UserInstance> >
2017-06-10 22:15:25 +02:00
2017-11-09 17:51:58 +01:00
export type LoadById = (id: number) => Bluebird<UserInstance>
2017-06-10 22:15:25 +02:00
2017-11-09 17:51:58 +01:00
export type LoadByUsername = (username: string) => Bluebird<UserInstance>
export type LoadByUsernameAndPopulateChannels = (username: string) => Bluebird<UserInstance>
2017-06-10 22:15:25 +02:00
2017-11-09 17:51:58 +01:00
export type LoadByUsernameOrEmail = (username: string, email: string) => Bluebird<UserInstance>
2017-05-22 20:58:25 +02:00
}
export interface UserClass {
isPasswordMatch: UserMethods.IsPasswordMatch,
2017-08-25 11:45:31 +02:00
toFormattedJSON: UserMethods.ToFormattedJSON,
hasRight: UserMethods.HasRight,
2017-09-04 20:07:54 +02:00
isAbleToUploadVideo: UserMethods.IsAbleToUploadVideo,
2017-05-22 20:58:25 +02:00
countTotal: UserMethods.CountTotal,
getByUsername: UserMethods.GetByUsername,
listForApi: UserMethods.ListForApi,
loadById: UserMethods.LoadById,
loadByUsername: UserMethods.LoadByUsername,
2017-10-24 19:41:09 +02:00
loadByUsernameAndPopulateChannels: UserMethods.LoadByUsernameAndPopulateChannels,
2017-05-22 20:58:25 +02:00
loadByUsernameOrEmail: UserMethods.LoadByUsernameOrEmail
}
export interface UserAttributes {
2017-09-04 20:07:54 +02:00
id?: number
2017-05-22 20:58:25 +02:00
password: string
username: string
email: string
displayNSFW?: boolean
2017-06-16 10:36:18 +02:00
role: UserRole
2017-09-04 20:07:54 +02:00
videoQuota: number
2017-10-24 19:41:09 +02:00
2017-11-09 17:51:58 +01:00
Account?: AccountInstance
2017-05-22 20:58:25 +02:00
}
export interface UserInstance extends UserClass, UserAttributes, Sequelize.Instance<UserAttributes> {
id: number
createdAt: Date
updatedAt: Date
2017-06-17 11:28:11 +02:00
isPasswordMatch: UserMethods.IsPasswordMatch
2017-08-25 11:45:31 +02:00
toFormattedJSON: UserMethods.ToFormattedJSON
hasRight: UserMethods.HasRight
2017-05-22 20:58:25 +02:00
}
export interface UserModel extends UserClass, Sequelize.Model<UserInstance, UserAttributes> {}