2020-09-27 20:03:37 +00:00
|
|
|
package main
|
|
|
|
|
|
|
|
type stringResponse struct {
|
|
|
|
Response string `json:"response" example:"message"`
|
|
|
|
Error string `json:"error" example:"errorDescription"`
|
|
|
|
}
|
|
|
|
|
|
|
|
type boolResponse struct {
|
|
|
|
Success bool `json:"success" example:"false"`
|
|
|
|
Error bool `json:"error" example:"true"`
|
|
|
|
}
|
|
|
|
|
|
|
|
type newUserDTO struct {
|
2021-05-07 13:32:51 +00:00
|
|
|
Username string `json:"username" example:"jeff" binding:"required"` // User's username
|
|
|
|
Password string `json:"password" example:"guest" binding:"required"` // User's password
|
|
|
|
Email string `json:"email" example:"jeff@jellyf.in"` // User's email address
|
|
|
|
Code string `json:"code" example:"abc0933jncjkcjj"` // Invite code (required on /newUser)
|
|
|
|
TelegramPIN string `json:"telegram_pin" example:"A1-B2-3C"` // Telegram verification PIN (if used)
|
|
|
|
TelegramContact bool `json:"telegram_contact"` // Whether or not to use telegram for notifications/pwrs
|
2021-05-21 20:35:25 +00:00
|
|
|
DiscordPIN string `json:"discord_pin" example:"A1-B2-3C"` // Discord verification PIN (if used)
|
|
|
|
DiscordContact bool `json:"discord_contact"` // Whether or not to use discord for notifications/pwrs
|
2021-05-29 17:51:43 +00:00
|
|
|
MatrixPIN string `json:"matrix_pin" example:"A1-B2-3C"` // Matrix verification PIN (if used)
|
|
|
|
MatrixContact bool `json:"matrix_contact"` // Whether or not to use matrix for notifications/pwrs
|
2020-09-27 20:03:37 +00:00
|
|
|
}
|
|
|
|
|
2021-01-24 15:19:58 +00:00
|
|
|
type newUserResponse struct {
|
|
|
|
User bool `json:"user" binding:"required"` // Whether user was created successfully
|
|
|
|
Email bool `json:"email"` // Whether welcome email was successfully sent (always true if feature is disabled
|
|
|
|
Error string `json:"error"` // Optional error message.
|
|
|
|
}
|
|
|
|
|
2020-09-27 20:03:37 +00:00
|
|
|
type deleteUserDTO struct {
|
|
|
|
Users []string `json:"users" binding:"required"` // List of usernames to delete
|
|
|
|
Notify bool `json:"notify"` // Whether to notify users of deletion
|
|
|
|
Reason string `json:"reason"` // Account deletion reason (for notification)
|
|
|
|
}
|
|
|
|
|
2021-04-12 20:28:36 +00:00
|
|
|
type enableDisableUserDTO struct {
|
|
|
|
Users []string `json:"users" binding:"required"` // List of usernames to delete
|
|
|
|
Enabled bool `json:"enabled"` // True = enable users, False = disable.
|
|
|
|
Notify bool `json:"notify"` // Whether to notify users of deletion
|
|
|
|
Reason string `json:"reason"` // Account deletion reason (for notification)
|
|
|
|
}
|
|
|
|
|
2020-09-27 20:03:37 +00:00
|
|
|
type generateInviteDTO struct {
|
2021-04-08 19:43:01 +00:00
|
|
|
Months int `json:"months" example:"0"` // Number of months
|
2021-02-28 00:44:28 +00:00
|
|
|
Days int `json:"days" example:"1"` // Number of days
|
|
|
|
Hours int `json:"hours" example:"2"` // Number of hours
|
|
|
|
Minutes int `json:"minutes" example:"3"` // Number of minutes
|
2021-02-28 15:41:06 +00:00
|
|
|
UserExpiry bool `json:"user-expiry"` // Whether or not user expiry is enabled
|
2021-04-08 19:43:01 +00:00
|
|
|
UserMonths int `json:"user-months,omitempty" example:"1"` // Number of months till user expiry
|
2021-02-28 00:44:28 +00:00
|
|
|
UserDays int `json:"user-days,omitempty" example:"1"` // Number of days till user expiry
|
|
|
|
UserHours int `json:"user-hours,omitempty" example:"2"` // Number of hours till user expiry
|
|
|
|
UserMinutes int `json:"user-minutes,omitempty" example:"3"` // Number of minutes till user expiry
|
2021-05-23 15:16:31 +00:00
|
|
|
SendTo string `json:"send-to" example:"jeff@jellyf.in"` // Send invite to this address or discord name
|
2021-02-28 00:44:28 +00:00
|
|
|
MultipleUses bool `json:"multiple-uses" example:"true"` // Allow multiple uses
|
|
|
|
NoLimit bool `json:"no-limit" example:"false"` // No invite use limit
|
|
|
|
RemainingUses int `json:"remaining-uses" example:"5"` // Remaining invite uses
|
|
|
|
Profile string `json:"profile" example:"DefaultProfile"` // Name of profile to apply on this invite
|
|
|
|
Label string `json:"label" example:"For Friends"` // Optional label for the invite
|
2020-09-27 20:03:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
type inviteProfileDTO struct {
|
|
|
|
Invite string `json:"invite" example:"slakdaslkdl2342"` // Invite to apply to
|
|
|
|
Profile string `json:"profile" example:"DefaultProfile"` // Profile to use
|
|
|
|
}
|
|
|
|
|
|
|
|
type profileDTO struct {
|
|
|
|
Admin bool `json:"admin" example:"false"` // Whether profile has admin rights or not
|
|
|
|
LibraryAccess string `json:"libraries" example:"all"` // Number of libraries profile has access to
|
|
|
|
FromUser string `json:"fromUser" example:"jeff"` // The user the profile is based on
|
|
|
|
}
|
|
|
|
|
|
|
|
type getProfilesDTO struct {
|
|
|
|
Profiles map[string]profileDTO `json:"profiles"`
|
|
|
|
DefaultProfile string `json:"default_profile"`
|
|
|
|
}
|
|
|
|
|
|
|
|
type profileChangeDTO struct {
|
|
|
|
Name string `json:"name" example:"DefaultProfile" binding:"required"` // Name of the profile
|
|
|
|
}
|
|
|
|
|
|
|
|
type newProfileDTO struct {
|
|
|
|
Name string `json:"name" example:"DefaultProfile" binding:"required"` // Name of the profile
|
|
|
|
ID string `json:"id" example:"kasdjlaskjd342342" binding:"required"` // ID of user to source settings from
|
|
|
|
Homescreen bool `json:"homescreen" example:"true"` // Whether to store homescreen layout or not
|
|
|
|
}
|
|
|
|
|
|
|
|
type inviteDTO struct {
|
2021-04-06 20:25:44 +00:00
|
|
|
Code string `json:"code" example:"sajdlj23423j23"` // Invite code
|
2021-04-08 19:43:01 +00:00
|
|
|
Months int `json:"months" example:"1"` // Number of months till expiry
|
2021-04-06 20:25:44 +00:00
|
|
|
Days int `json:"days" example:"1"` // Number of days till expiry
|
|
|
|
Hours int `json:"hours" example:"2"` // Number of hours till expiry
|
|
|
|
Minutes int `json:"minutes" example:"3"` // Number of minutes till expiry
|
|
|
|
UserExpiry bool `json:"user-expiry"` // Whether or not user expiry is enabled
|
2021-04-08 19:43:01 +00:00
|
|
|
UserMonths int `json:"user-months,omitempty" example:"1"` // Number of months till user expiry
|
2021-04-06 20:25:44 +00:00
|
|
|
UserDays int `json:"user-days,omitempty" example:"1"` // Number of days till user expiry
|
|
|
|
UserHours int `json:"user-hours,omitempty" example:"2"` // Number of hours till user expiry
|
|
|
|
UserMinutes int `json:"user-minutes,omitempty" example:"3"` // Number of minutes till user expiry
|
|
|
|
Created int64 `json:"created" example:"1617737207510"` // Date of creation
|
|
|
|
Profile string `json:"profile" example:"DefaultProfile"` // Profile used on this invite
|
|
|
|
UsedBy map[string]int64 `json:"used-by,omitempty"` // Users who have used this invite mapped to their creation time in Epoch/Unix time
|
|
|
|
NoLimit bool `json:"no-limit,omitempty"` // If true, invite can be used any number of times
|
|
|
|
RemainingUses int `json:"remaining-uses,omitempty"` // Remaining number of uses (if applicable)
|
2021-05-23 15:16:31 +00:00
|
|
|
SendTo string `json:"send_to,omitempty"` // Email/Discord username the invite was sent to (if applicable)
|
2021-04-06 20:25:44 +00:00
|
|
|
NotifyExpiry bool `json:"notify-expiry,omitempty"` // Whether to notify the requesting user of expiry or not
|
|
|
|
NotifyCreation bool `json:"notify-creation,omitempty"` // Whether to notify the requesting user of account creation or not
|
|
|
|
Label string `json:"label,omitempty" example:"For Friends"` // Optional label for the invite
|
2020-09-27 20:03:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
type getInvitesDTO struct {
|
|
|
|
Profiles []string `json:"profiles"` // List of profiles (name only)
|
|
|
|
Invites []inviteDTO `json:"invites"` // List of invites
|
|
|
|
}
|
|
|
|
|
|
|
|
// fake DTO, if i actually used this the code would be a lot longer
|
|
|
|
type setNotifyValues map[string]struct {
|
|
|
|
NotifyExpiry bool `json:"notify-expiry,omitempty"` // Whether to notify the requesting user of expiry or not
|
|
|
|
NotifyCreation bool `json:"notify-creation,omitempty"` // Whether to notify the requesting user of account creation or not
|
|
|
|
}
|
|
|
|
|
|
|
|
type setNotifyDTO map[string]setNotifyValues
|
|
|
|
|
|
|
|
type deleteInviteDTO struct {
|
|
|
|
Code string `json:"code" example:"skjadajd43234s"` // Code of invite to delete
|
|
|
|
}
|
|
|
|
|
|
|
|
type respUser struct {
|
2021-05-08 14:53:42 +00:00
|
|
|
ID string `json:"id" example:"fdgsdfg45534fa"` // userID of user
|
|
|
|
Name string `json:"name" example:"jeff"` // Username of user
|
|
|
|
Email string `json:"email,omitempty" example:"jeff@jellyf.in"` // Email address of user (if available)
|
2021-05-21 20:35:25 +00:00
|
|
|
NotifyThroughEmail bool `json:"notify_email"`
|
|
|
|
LastActive int64 `json:"last_active" example:"1617737207510"` // Time of last activity on Jellyfin
|
|
|
|
Admin bool `json:"admin" example:"false"` // Whether or not the user is Administrator
|
|
|
|
Expiry int64 `json:"expiry" example:"1617737207510"` // Expiry time of user as Epoch/Unix time.
|
|
|
|
Disabled bool `json:"disabled"` // Whether or not the user is disabled.
|
|
|
|
Telegram string `json:"telegram"` // Telegram username (if known)
|
2021-05-08 14:53:42 +00:00
|
|
|
NotifyThroughTelegram bool `json:"notify_telegram"`
|
2021-05-21 20:35:25 +00:00
|
|
|
Discord string `json:"discord"` // Discord username (if known)
|
|
|
|
DiscordID string `json:"discord_id"` // Discord user ID for creating links.
|
|
|
|
NotifyThroughDiscord bool `json:"notify_discord"`
|
2021-05-29 23:05:46 +00:00
|
|
|
Matrix string `json:"matrix"` // Matrix ID (if known)
|
|
|
|
NotifyThroughMatrix bool `json:"notify_matrix"`
|
2020-09-27 20:03:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
type getUsersDTO struct {
|
|
|
|
UserList []respUser `json:"users"`
|
|
|
|
}
|
|
|
|
|
|
|
|
type ombiUser struct {
|
|
|
|
Name string `json:"name,omitempty" example:"jeff"` // Name of Ombi user
|
|
|
|
ID string `json:"id" example:"djgkjdg7dkjfsj8"` // userID of Ombi user
|
|
|
|
}
|
|
|
|
|
|
|
|
type ombiUsersDTO struct {
|
|
|
|
Users []ombiUser `json:"users"`
|
|
|
|
}
|
|
|
|
|
|
|
|
type modifyEmailsDTO map[string]string
|
|
|
|
|
|
|
|
type userSettingsDTO struct {
|
|
|
|
From string `json:"from"` // Whether to apply from "user" or "profile"
|
|
|
|
Profile string `json:"profile"` // Name of profile (if from = "profile")
|
|
|
|
ApplyTo []string `json:"apply_to"` // Users to apply settings to
|
|
|
|
ID string `json:"id"` // ID of user (if from = "user")
|
|
|
|
Homescreen bool `json:"homescreen"` // Whether to apply homescreen layout or not
|
|
|
|
}
|
|
|
|
|
2021-02-18 14:58:53 +00:00
|
|
|
type announcementDTO struct {
|
|
|
|
Users []string `json:"users"` // List of User IDs to send announcement to
|
|
|
|
Subject string `json:"subject"` // Email subject
|
|
|
|
Message string `json:"message"` // Email content (markdown supported)
|
|
|
|
}
|
|
|
|
|
2021-07-10 15:43:27 +00:00
|
|
|
type announcementTemplate struct {
|
|
|
|
Name string `json:"name"` // Name of template
|
|
|
|
Subject string `json:"subject"` // Email subject
|
|
|
|
Message string `json:"message"` // Email content (markdown supported)
|
|
|
|
}
|
|
|
|
|
|
|
|
type getAnnouncementsDTO struct {
|
|
|
|
Announcements []string `json:"announcements"` // list of announcement names.
|
|
|
|
}
|
|
|
|
|
2020-09-27 20:03:37 +00:00
|
|
|
type errorListDTO map[string]map[string]string
|
|
|
|
|
|
|
|
type configDTO map[string]interface{}
|
|
|
|
|
2021-01-05 18:16:23 +00:00
|
|
|
// Below are for sending config
|
|
|
|
|
|
|
|
type meta struct {
|
2021-01-31 18:50:04 +00:00
|
|
|
Name string `json:"name"`
|
|
|
|
Description string `json:"description"`
|
2021-03-15 22:51:17 +00:00
|
|
|
Advanced bool `json:"advanced,omitempty"`
|
2021-01-31 18:50:04 +00:00
|
|
|
DependsTrue string `json:"depends_true,omitempty"`
|
|
|
|
DependsFalse string `json:"depends_false,omitempty"`
|
2021-01-05 18:16:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
type setting struct {
|
|
|
|
Name string `json:"name"`
|
|
|
|
Description string `json:"description"`
|
|
|
|
Required bool `json:"required"`
|
2021-03-15 22:51:17 +00:00
|
|
|
Advanced bool `json:"advanced,omitempty"`
|
2021-01-05 18:16:23 +00:00
|
|
|
RequiresRestart bool `json:"requires_restart"`
|
|
|
|
Type string `json:"type"` // Type (string, number, bool, etc.)
|
|
|
|
Value interface{} `json:"value"`
|
2021-01-31 18:50:04 +00:00
|
|
|
Options [][2]string `json:"options,omitempty"`
|
2021-01-05 18:16:23 +00:00
|
|
|
DependsTrue string `json:"depends_true,omitempty"` // If specified, this field is enabled when the specified bool setting is enabled.
|
|
|
|
DependsFalse string `json:"depends_false,omitempty"` // If specified, opposite behaviour of DependsTrue.
|
|
|
|
}
|
|
|
|
|
|
|
|
type section struct {
|
2021-01-21 14:16:03 +00:00
|
|
|
Meta meta `json:"meta"`
|
2021-01-05 18:16:23 +00:00
|
|
|
Order []string `json:"order"`
|
|
|
|
Settings map[string]setting `json:"settings"`
|
|
|
|
}
|
|
|
|
|
|
|
|
type settings struct {
|
|
|
|
Order []string `json:"order"`
|
|
|
|
Sections map[string]section `json:"sections"`
|
|
|
|
}
|
2021-01-11 19:17:43 +00:00
|
|
|
|
|
|
|
type langDTO map[string]string
|
2021-02-19 21:38:20 +00:00
|
|
|
|
2021-02-21 15:51:42 +00:00
|
|
|
type emailListDTO map[string]emailListEl
|
|
|
|
|
|
|
|
type emailListEl struct {
|
|
|
|
Name string `json:"name"`
|
|
|
|
Enabled bool `json:"enabled"`
|
|
|
|
}
|
2021-02-19 21:38:20 +00:00
|
|
|
|
|
|
|
type emailSetDTO struct {
|
|
|
|
Content string `json:"content"`
|
|
|
|
}
|
2021-02-20 22:49:59 +00:00
|
|
|
|
|
|
|
type emailTestDTO struct {
|
|
|
|
Address string `json:"address"`
|
|
|
|
}
|
2021-02-22 00:43:36 +00:00
|
|
|
|
|
|
|
type customEmailDTO struct {
|
2021-04-15 14:34:17 +00:00
|
|
|
Content string `json:"content"`
|
|
|
|
Variables []string `json:"variables"`
|
|
|
|
Conditionals []string `json:"conditionals"`
|
|
|
|
Values map[string]interface{} `json:"values"`
|
|
|
|
HTML string `json:"html"`
|
|
|
|
Plaintext string `json:"plaintext"`
|
2021-02-22 00:43:36 +00:00
|
|
|
}
|
2021-02-28 15:41:06 +00:00
|
|
|
|
2021-02-28 17:52:24 +00:00
|
|
|
type extendExpiryDTO struct {
|
|
|
|
Users []string `json:"users"` // List of user IDs to apply to.
|
2021-04-08 19:43:01 +00:00
|
|
|
Months int `json:"months" example:"1"` // Number of months to add.
|
2021-02-28 17:52:24 +00:00
|
|
|
Days int `json:"days" example:"1"` // Number of days to add.
|
|
|
|
Hours int `json:"hours" example:"2"` // Number of hours to add.
|
|
|
|
Minutes int `json:"minutes" example:"3"` // Number of minutes to add.
|
2021-02-28 15:41:06 +00:00
|
|
|
}
|
2021-03-07 15:23:44 +00:00
|
|
|
|
|
|
|
type checkUpdateDTO struct {
|
|
|
|
New bool `json:"new"` // Whether or not there's a new update.
|
|
|
|
Update Update `json:"update"`
|
|
|
|
}
|
2021-05-07 17:20:35 +00:00
|
|
|
|
|
|
|
type telegramPinDTO struct {
|
|
|
|
Token string `json:"token" example:"A1-B2-3C"`
|
|
|
|
Username string `json:"username"`
|
|
|
|
}
|
|
|
|
|
|
|
|
type telegramSetDTO struct {
|
|
|
|
Token string `json:"token" example:"A1-B2-3C"`
|
|
|
|
ID string `json:"id"` // Jellyfin ID of user.
|
|
|
|
}
|
2021-05-08 14:53:42 +00:00
|
|
|
|
2021-05-21 21:46:46 +00:00
|
|
|
type SetContactMethodsDTO struct {
|
2021-05-21 20:35:25 +00:00
|
|
|
ID string `json:"id"`
|
|
|
|
Email bool `json:"email"`
|
|
|
|
Discord bool `json:"discord"`
|
|
|
|
Telegram bool `json:"telegram"`
|
2021-05-29 23:05:46 +00:00
|
|
|
Matrix bool `json:"matrix"`
|
2021-05-08 14:53:42 +00:00
|
|
|
}
|
2021-05-22 20:42:15 +00:00
|
|
|
|
|
|
|
type DiscordUserDTO struct {
|
|
|
|
Name string `json:"name"`
|
|
|
|
AvatarURL string `json:"avatar_url"`
|
|
|
|
ID string `json:"id"`
|
|
|
|
}
|
|
|
|
|
|
|
|
type DiscordUsersDTO struct {
|
|
|
|
Users []DiscordUserDTO `json:"users"`
|
|
|
|
}
|
|
|
|
|
|
|
|
type DiscordConnectUserDTO struct {
|
|
|
|
JellyfinID string `json:"jf_id"`
|
|
|
|
DiscordID string `json:"discord_id"`
|
|
|
|
}
|
2021-05-23 18:50:03 +00:00
|
|
|
|
|
|
|
type DiscordInviteDTO struct {
|
|
|
|
InviteURL string `json:"invite"`
|
|
|
|
IconURL string `json:"icon"`
|
|
|
|
}
|
2021-05-29 16:43:11 +00:00
|
|
|
|
|
|
|
type MatrixSendPINDTO struct {
|
|
|
|
UserID string `json:"user_id"`
|
|
|
|
}
|
2021-05-30 10:47:41 +00:00
|
|
|
|
2021-05-29 16:43:11 +00:00
|
|
|
type MatrixCheckPINDTO struct {
|
|
|
|
PIN string `json:"pin"`
|
|
|
|
}
|
2021-05-30 10:47:41 +00:00
|
|
|
|
|
|
|
type MatrixConnectUserDTO struct {
|
|
|
|
JellyfinID string `json:"jf_id"`
|
|
|
|
UserID string `json:"user_id"`
|
|
|
|
}
|
2021-05-30 21:35:34 +00:00
|
|
|
|
|
|
|
type MatrixLoginDTO struct {
|
|
|
|
Homeserver string `json:"homeserver"`
|
|
|
|
Username string `json:"username"`
|
|
|
|
Password string `json:"password"`
|
|
|
|
}
|
2021-06-07 12:46:46 +00:00
|
|
|
|
|
|
|
type ResetPasswordDTO struct {
|
|
|
|
PIN string `json:"pin"`
|
|
|
|
Password string `json:"password"`
|
|
|
|
}
|