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

74 lines
2.8 KiB
TypeScript
Raw Normal View History

2017-11-09 17:51:58 +01:00
import * as Bluebird from 'bluebird'
2017-11-13 17:39:41 +01:00
import * as Sequelize from 'sequelize'
import { Account as FormattedAccount, ActivityPubActor } from '../../../shared'
2017-11-15 11:00:25 +01:00
import { ServerInstance } from '../server/server-interface'
2017-11-09 17:51:58 +01:00
import { VideoChannelInstance } from '../video/video-channel-interface'
export namespace AccountMethods {
2017-11-13 17:39:41 +01:00
export type LoadApplication = () => Bluebird<AccountInstance>
2017-11-09 17:51:58 +01:00
export type Load = (id: number) => Bluebird<AccountInstance>
export type LoadByUUID = (uuid: string) => Bluebird<AccountInstance>
2017-11-13 18:48:28 +01:00
export type LoadByUrl = (url: string, transaction?: Sequelize.Transaction) => Bluebird<AccountInstance>
2017-11-14 17:31:26 +01:00
export type LoadLocalByName = (name: string) => Bluebird<AccountInstance>
export type LoadByNameAndHost = (name: string, host: string) => Bluebird<AccountInstance>
export type ListByFollowersUrls = (followerUrls: string[], transaction?: Sequelize.Transaction) => Bluebird<AccountInstance[]>
2017-11-09 17:51:58 +01:00
export type ToActivityPubObject = (this: AccountInstance) => ActivityPubActor
2017-11-13 17:39:41 +01:00
export type ToFormattedJSON = (this: AccountInstance) => FormattedAccount
2017-11-09 17:51:58 +01:00
export type IsOwned = (this: AccountInstance) => boolean
export type GetFollowerSharedInboxUrls = (this: AccountInstance) => Bluebird<string[]>
export type GetFollowingUrl = (this: AccountInstance) => string
export type GetFollowersUrl = (this: AccountInstance) => string
export type GetPublicKeyUrl = (this: AccountInstance) => string
}
export interface AccountClass {
2017-11-13 17:39:41 +01:00
loadApplication: AccountMethods.LoadApplication
2017-11-09 17:51:58 +01:00
load: AccountMethods.Load
loadByUUID: AccountMethods.LoadByUUID
loadByUrl: AccountMethods.LoadByUrl
2017-11-14 17:31:26 +01:00
loadLocalByName: AccountMethods.LoadLocalByName
loadByNameAndHost: AccountMethods.LoadByNameAndHost
listByFollowersUrls: AccountMethods.ListByFollowersUrls
2017-11-09 17:51:58 +01:00
}
export interface AccountAttributes {
name: string
2017-11-20 09:43:39 +01:00
url?: string
2017-11-09 17:51:58 +01:00
publicKey: string
privateKey: string
followersCount: number
followingCount: number
inboxUrl: string
outboxUrl: string
sharedInboxUrl: string
followersUrl: string
followingUrl: string
uuid?: string
2017-11-15 11:00:25 +01:00
serverId?: number
2017-11-09 17:51:58 +01:00
userId?: number
applicationId?: number
}
export interface AccountInstance extends AccountClass, AccountAttributes, Sequelize.Instance<AccountAttributes> {
isOwned: AccountMethods.IsOwned
toActivityPubObject: AccountMethods.ToActivityPubObject
2017-11-13 17:39:41 +01:00
toFormattedJSON: AccountMethods.ToFormattedJSON
2017-11-09 17:51:58 +01:00
getFollowerSharedInboxUrls: AccountMethods.GetFollowerSharedInboxUrls
getFollowingUrl: AccountMethods.GetFollowingUrl
getFollowersUrl: AccountMethods.GetFollowersUrl
getPublicKeyUrl: AccountMethods.GetPublicKeyUrl
id: number
createdAt: Date
updatedAt: Date
2017-11-15 11:00:25 +01:00
Server: ServerInstance
2017-11-09 17:51:58 +01:00
VideoChannels: VideoChannelInstance[]
}
export interface AccountModel extends AccountClass, Sequelize.Model<AccountInstance, AccountAttributes> {}