mirror of
https://github.com/owncast/owncast.git
synced 2024-11-21 20:28:15 +03:00
119 lines
3.4 KiB
Go
119 lines
3.4 KiB
Go
package persistence
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/owncast/owncast/db"
|
|
"github.com/owncast/owncast/models"
|
|
"github.com/owncast/owncast/utils"
|
|
"github.com/pkg/errors"
|
|
log "github.com/sirupsen/logrus"
|
|
)
|
|
|
|
func createFederationFollowersTable() {
|
|
log.Traceln("Creating federation followers table...")
|
|
|
|
createTableSQL := `CREATE TABLE IF NOT EXISTS ap_followers (
|
|
"iri" TEXT NOT NULL,
|
|
"inbox" TEXT NOT NULL,
|
|
"name" TEXT,
|
|
"username" TEXT NOT NULL,
|
|
"image" TEXT,
|
|
"request" TEXT NOT NULL,
|
|
"created_at" TIMESTAMP DEFAULT CURRENT_TIMESTAMP,
|
|
"approved_at" TIMESTAMP,
|
|
"disabled_at" TIMESTAMP,
|
|
"request_object" BLOB,
|
|
PRIMARY KEY (iri));`
|
|
_datastore.MustExec(createTableSQL)
|
|
_datastore.MustExec(`CREATE INDEX IF NOT EXISTS idx_iri ON ap_followers (iri);`)
|
|
_datastore.MustExec(`CREATE INDEX IF NOT EXISTS idx_approved_at ON ap_followers (approved_at);`)
|
|
}
|
|
|
|
// GetFollowerCount will return the number of followers we're keeping track of.
|
|
func GetFollowerCount() (int64, error) {
|
|
ctx := context.Background()
|
|
return _datastore.GetQueries().GetFollowerCount(ctx)
|
|
}
|
|
|
|
// GetFederationFollowers will return a slice of the followers we keep track of locally.
|
|
func GetFederationFollowers(limit int, offset int) ([]models.Follower, int, error) {
|
|
ctx := context.Background()
|
|
total, err := _datastore.GetQueries().GetFollowerCount(ctx)
|
|
if err != nil {
|
|
return nil, 0, errors.Wrap(err, "unable to fetch total number of followers")
|
|
}
|
|
|
|
followersResult, err := _datastore.GetQueries().GetFederationFollowersWithOffset(ctx, db.GetFederationFollowersWithOffsetParams{
|
|
Limit: limit,
|
|
Offset: offset,
|
|
})
|
|
if err != nil {
|
|
return nil, 0, err
|
|
}
|
|
|
|
followers := make([]models.Follower, 0)
|
|
|
|
for _, row := range followersResult {
|
|
singleFollower := models.Follower{
|
|
Name: row.Name.String,
|
|
Username: row.Username,
|
|
Image: row.Image.String,
|
|
ActorIRI: row.Iri,
|
|
Inbox: row.Inbox,
|
|
Timestamp: utils.NullTime(row.CreatedAt),
|
|
}
|
|
|
|
followers = append(followers, singleFollower)
|
|
}
|
|
|
|
return followers, int(total), nil
|
|
}
|
|
|
|
// GetPendingFollowRequests will return pending follow requests.
|
|
func GetPendingFollowRequests() ([]models.Follower, error) {
|
|
pendingFollowersResult, err := _datastore.GetQueries().GetFederationFollowerApprovalRequests(context.Background())
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
followers := make([]models.Follower, 0)
|
|
|
|
for _, row := range pendingFollowersResult {
|
|
singleFollower := models.Follower{
|
|
Name: row.Name.String,
|
|
Username: row.Username,
|
|
Image: row.Image.String,
|
|
ActorIRI: row.Iri,
|
|
Inbox: row.Inbox,
|
|
Timestamp: utils.NullTime{Time: row.CreatedAt.Time, Valid: true},
|
|
}
|
|
followers = append(followers, singleFollower)
|
|
}
|
|
|
|
return followers, nil
|
|
}
|
|
|
|
// GetBlockedAndRejectedFollowers will return blocked and rejected followers.
|
|
func GetBlockedAndRejectedFollowers() ([]models.Follower, error) {
|
|
pendingFollowersResult, err := _datastore.GetQueries().GetRejectedAndBlockedFollowers(context.Background())
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
followers := make([]models.Follower, 0)
|
|
|
|
for _, row := range pendingFollowersResult {
|
|
singleFollower := models.Follower{
|
|
Name: row.Name.String,
|
|
Username: row.Username,
|
|
Image: row.Image.String,
|
|
ActorIRI: row.Iri,
|
|
DisabledAt: utils.NullTime{Time: row.DisabledAt.Time, Valid: true},
|
|
Timestamp: utils.NullTime{Time: row.CreatedAt.Time, Valid: true},
|
|
}
|
|
followers = append(followers, singleFollower)
|
|
}
|
|
|
|
return followers, nil
|
|
}
|