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

61 lines
2.4 KiB
TypeScript
Raw Normal View History

2017-11-13 16:39:41 +00:00
import * as Bluebird from 'bluebird'
2017-11-20 10:19:23 +00:00
import * as Sequelize from 'sequelize'
import { AccountFollow, FollowState } from '../../../shared/models/accounts/follow.model'
import { ResultList } from '../../../shared/models/result-list.model'
import { AccountInstance } from './account-interface'
2017-11-09 16:51:58 +00:00
export namespace AccountFollowMethods {
2017-11-23 13:19:55 +00:00
export type LoadByAccountAndTarget = (
accountId: number,
targetAccountId: number,
t?: Sequelize.Transaction
) => Bluebird<AccountFollowInstance>
2017-11-20 10:19:23 +00:00
export type ListFollowingForApi = (id: number, start: number, count: number, sort: string) => Bluebird< ResultList<AccountFollowInstance>>
export type ListFollowersForApi = (id: number, start: number, count: number, sort: string) => Bluebird< ResultList<AccountFollowInstance>>
export type ListAcceptedFollowerUrlsForApi = (
accountId: number[],
t: Sequelize.Transaction,
start?: number,
count?: number
) => Promise< ResultList<string> >
export type ListAcceptedFollowingUrlsForApi = (
accountId: number[],
t: Sequelize.Transaction,
start?: number,
count?: number
) => Promise< ResultList<string> >
export type ListAcceptedFollowerSharedInboxUrls = (accountId: number[], t: Sequelize.Transaction) => Promise< ResultList<string> >
2017-11-20 10:19:23 +00:00
export type ToFormattedJSON = (this: AccountFollowInstance) => AccountFollow
2017-11-09 16:51:58 +00:00
}
export interface AccountFollowClass {
2017-11-13 16:39:41 +00:00
loadByAccountAndTarget: AccountFollowMethods.LoadByAccountAndTarget
listFollowersForApi: AccountFollowMethods.ListFollowersForApi
listFollowingForApi: AccountFollowMethods.ListFollowingForApi
listAcceptedFollowerUrlsForApi: AccountFollowMethods.ListAcceptedFollowerUrlsForApi
listAcceptedFollowingUrlsForApi: AccountFollowMethods.ListAcceptedFollowingUrlsForApi
listAcceptedFollowerSharedInboxUrls: AccountFollowMethods.ListAcceptedFollowerSharedInboxUrls
2017-11-09 16:51:58 +00:00
}
export interface AccountFollowAttributes {
accountId: number
targetAccountId: number
2017-11-13 16:39:41 +00:00
state: FollowState
2017-11-09 16:51:58 +00:00
}
export interface AccountFollowInstance extends AccountFollowClass, AccountFollowAttributes, Sequelize.Instance<AccountFollowAttributes> {
id: number
createdAt: Date
updatedAt: Date
AccountFollower?: AccountInstance
AccountFollowing?: AccountInstance
2017-11-20 10:19:23 +00:00
toFormattedJSON: AccountFollowMethods.ToFormattedJSON
2017-11-09 16:51:58 +00:00
}
export interface AccountFollowModel extends AccountFollowClass, Sequelize.Model<AccountFollowInstance, AccountFollowAttributes> {}