This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
otter-space-sdk/pkg/database/database.go

51 lines
2.3 KiB
Go
Raw Normal View History

package database
2024-02-16 14:16:50 +00:00
import (
"context"
2024-02-16 20:51:09 +00:00
"git.dragse.it/anthrove/otter-space-sdk/pkg/models"
2024-02-16 14:16:50 +00:00
)
type OtterSpace interface {
Connect(ctx context.Context, endpoint string, username string, password string, database string, port int, ssl string, timezone string) error
2024-02-16 14:16:50 +00:00
AddUserWithRelationToSource(ctx context.Context, anthroveUserID models.AnthroveUserID, sourceDomain string, userID string, username string) error
2024-02-16 14:16:50 +00:00
AddSource(ctx context.Context, anthroveSource *models.Source) error
2024-02-16 14:16:50 +00:00
AddPost(ctx context.Context, anthrovePost *models.Post) error
2024-02-16 14:16:50 +00:00
AddTagWithRelationToPost(ctx context.Context, anthrovePostID models.AnthrovePostID, anthroveTag *models.Tag) error
2024-02-16 14:16:50 +00:00
LinkPostWithSource(ctx context.Context, anthrovePostID models.AnthrovePostID, anthroveSourceDomain string, anthrovePostRelationship *models.PostReference) error
2024-02-16 14:16:50 +00:00
LinkUserWithPost(ctx context.Context, anthroveUser *models.User, anthrovePost *models.Post) error
2024-02-16 14:16:50 +00:00
CheckUserPostLink(ctx context.Context, anthroveUserID models.AnthroveUserID, sourcePostID string, sourceUrl string) (bool, error)
2024-02-16 14:16:50 +00:00
GetPostByAnthroveID(ctx context.Context, anthrovePost *models.Post) (*models.Post, error)
2024-02-16 14:16:50 +00:00
GetPostBySourceURL(ctx context.Context, sourceUrl string) (*models.Post, error)
2024-02-16 14:16:50 +00:00
GetPostBySourceID(ctx context.Context, sourcePostID string) (*models.Post, error)
2024-02-16 14:16:50 +00:00
GetUserFavoriteCount(ctx context.Context, anthroveUserID models.AnthroveUserID) (int64, error)
2024-02-16 14:16:50 +00:00
GetUserSourceLinks(ctx context.Context, anthroveUserID models.AnthroveUserID) (map[string]models.UserSource, error)
2024-02-16 14:16:50 +00:00
GetSpecifiedUserSourceLink(ctx context.Context, anthroveUserID models.AnthroveUserID, sourceDisplayName string) (map[string]models.UserSource, error)
GetAnthroveUser(ctx context.Context, anthroveUserID models.AnthroveUserID) (*models.User, error)
2024-02-16 14:16:50 +00:00
GetAllAnthroveUserIDs(ctx context.Context) ([]models.AnthroveUserID, error)
GetUserFavoritePostsWithPagination(ctx context.Context, anthroveUserID models.AnthroveUserID, skip int, limit int) (*models.FavoriteList, error)
GetUserTagsTroughFavedPosts(ctx context.Context, anthroveUserID models.AnthroveUserID) ([]models.TagsWithFrequency, error)
2024-05-15 13:31:17 +00:00
GetAllTags(ctx context.Context) ([]models.TagsWithFrequency, error)
2024-05-15 13:44:34 +00:00
GetAllSources(ctx context.Context) ([]models.Source, error)
2024-05-21 09:48:03 +00:00
GetSourceByURL(ctx context.Context, sourceUrl string) (*models.Source, error)
2024-02-16 14:16:50 +00:00
}