]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame_incremental - server/models/account/account-follow-interface.ts
Fix update host script
[github/Chocobozzz/PeerTube.git] / server / models / account / account-follow-interface.ts
... / ...
CommitLineData
1import * as Sequelize from 'sequelize'
2import * as Bluebird from 'bluebird'
3import { FollowState } from '../../../shared/models/accounts/follow.model'
4import { ResultList } from '../../../shared/models/result-list.model'
5import { AccountInstance } from './account-interface'
6
7export namespace AccountFollowMethods {
8 export type LoadByAccountAndTarget = (accountId: number, targetAccountId: number) => Bluebird<AccountFollowInstance>
9
10 export type ListFollowingForApi = (id: number, start: number, count: number, sort: string) => Bluebird< ResultList<AccountInstance> >
11 export type ListFollowersForApi = (id: number, start: number, count: number, sort: string) => Bluebird< ResultList<AccountInstance> >
12
13 export type ListAcceptedFollowerUrlsForApi = (accountId: number[], start?: number, count?: number) => Promise< ResultList<string> >
14 export type ListAcceptedFollowingUrlsForApi = (accountId: number[], start?: number, count?: number) => Promise< ResultList<string> >
15 export type ListAcceptedFollowerSharedInboxUrls = (accountId: number[]) => Promise< ResultList<string> >
16}
17
18export interface AccountFollowClass {
19 loadByAccountAndTarget: AccountFollowMethods.LoadByAccountAndTarget
20 listFollowersForApi: AccountFollowMethods.ListFollowersForApi
21 listFollowingForApi: AccountFollowMethods.ListFollowingForApi
22
23 listAcceptedFollowerUrlsForApi: AccountFollowMethods.ListAcceptedFollowerUrlsForApi
24 listAcceptedFollowingUrlsForApi: AccountFollowMethods.ListAcceptedFollowingUrlsForApi
25 listAcceptedFollowerSharedInboxUrls: AccountFollowMethods.ListAcceptedFollowerSharedInboxUrls
26}
27
28export interface AccountFollowAttributes {
29 accountId: number
30 targetAccountId: number
31 state: FollowState
32}
33
34export interface AccountFollowInstance extends AccountFollowClass, AccountFollowAttributes, Sequelize.Instance<AccountFollowAttributes> {
35 id: number
36 createdAt: Date
37 updatedAt: Date
38
39 AccountFollower?: AccountInstance
40 AccountFollowing?: AccountInstance
41}
42
43export interface AccountFollowModel extends AccountFollowClass, Sequelize.Model<AccountFollowInstance, AccountFollowAttributes> {}