2021-05-17 18:06:58 +01:00
|
|
|
/*
|
|
|
|
GoToSocial
|
2021-12-20 17:42:19 +00:00
|
|
|
Copyright (C) 2021-2022 GoToSocial Authors admin@gotosocial.org
|
2021-05-17 18:06:58 +01:00
|
|
|
|
|
|
|
This program is free software: you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU Affero General Public License as published by
|
|
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU Affero General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU Affero General Public License
|
|
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
2021-05-30 12:12:00 +01:00
|
|
|
package processing
|
2021-05-09 13:06:06 +01:00
|
|
|
|
|
|
|
import (
|
2021-08-25 14:34:33 +01:00
|
|
|
"context"
|
2021-05-09 13:06:06 +01:00
|
|
|
"fmt"
|
|
|
|
|
|
|
|
apimodel "github.com/superseriousbusiness/gotosocial/internal/api/model"
|
2021-12-07 12:31:39 +00:00
|
|
|
"github.com/superseriousbusiness/gotosocial/internal/config"
|
2021-05-21 14:48:26 +01:00
|
|
|
"github.com/superseriousbusiness/gotosocial/internal/db"
|
2021-06-13 17:42:28 +01:00
|
|
|
"github.com/superseriousbusiness/gotosocial/internal/gtserror"
|
2021-05-09 13:06:06 +01:00
|
|
|
"github.com/superseriousbusiness/gotosocial/internal/gtsmodel"
|
2021-07-26 19:25:54 +01:00
|
|
|
"github.com/superseriousbusiness/gotosocial/internal/text"
|
2021-09-01 17:29:25 +01:00
|
|
|
"github.com/superseriousbusiness/gotosocial/internal/validate"
|
2021-05-09 13:06:06 +01:00
|
|
|
)
|
|
|
|
|
2021-08-25 14:34:33 +01:00
|
|
|
func (p *processor) InstanceGet(ctx context.Context, domain string) (*apimodel.Instance, gtserror.WithCode) {
|
2021-05-09 13:06:06 +01:00
|
|
|
i := >smodel.Instance{}
|
2021-08-25 14:34:33 +01:00
|
|
|
if err := p.db.GetWhere(ctx, []db.Where{{Key: "domain", Value: domain}}, i); err != nil {
|
2021-12-07 12:31:39 +00:00
|
|
|
return nil, gtserror.NewErrorInternalError(fmt.Errorf("db error fetching instance %s: %s", domain, err))
|
2021-05-09 13:06:06 +01:00
|
|
|
}
|
|
|
|
|
2021-10-04 14:24:19 +01:00
|
|
|
ai, err := p.tc.InstanceToAPIInstance(ctx, i)
|
2021-05-09 13:06:06 +01:00
|
|
|
if err != nil {
|
2021-06-13 17:42:28 +01:00
|
|
|
return nil, gtserror.NewErrorInternalError(fmt.Errorf("error converting instance to api representation: %s", err))
|
2021-05-09 13:06:06 +01:00
|
|
|
}
|
|
|
|
|
2021-05-09 19:34:27 +01:00
|
|
|
return ai, nil
|
2021-05-09 13:06:06 +01:00
|
|
|
}
|
2021-06-23 15:35:57 +01:00
|
|
|
|
2021-08-25 14:34:33 +01:00
|
|
|
func (p *processor) InstancePatch(ctx context.Context, form *apimodel.InstanceSettingsUpdateRequest) (*apimodel.Instance, gtserror.WithCode) {
|
2021-06-23 15:35:57 +01:00
|
|
|
// fetch the instance entry from the db for processing
|
|
|
|
i := >smodel.Instance{}
|
2022-05-30 13:41:24 +01:00
|
|
|
host := config.GetHost()
|
2021-12-07 12:31:39 +00:00
|
|
|
if err := p.db.GetWhere(ctx, []db.Where{{Key: "domain", Value: host}}, i); err != nil {
|
|
|
|
return nil, gtserror.NewErrorInternalError(fmt.Errorf("db error fetching instance %s: %s", host, err))
|
2021-06-23 15:35:57 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// fetch the instance account from the db for processing
|
2021-08-25 14:34:33 +01:00
|
|
|
ia, err := p.db.GetInstanceAccount(ctx, "")
|
2021-08-20 11:26:56 +01:00
|
|
|
if err != nil {
|
2021-12-07 12:31:39 +00:00
|
|
|
return nil, gtserror.NewErrorInternalError(fmt.Errorf("db error fetching instance account %s: %s", host, err))
|
2021-06-23 15:35:57 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// validate & update site title if it's set on the form
|
2021-07-08 14:05:19 +01:00
|
|
|
if form.Title != nil {
|
2021-09-01 17:29:25 +01:00
|
|
|
if err := validate.SiteTitle(*form.Title); err != nil {
|
2021-06-23 15:35:57 +01:00
|
|
|
return nil, gtserror.NewErrorBadRequest(err, fmt.Sprintf("site title invalid: %s", err))
|
|
|
|
}
|
2022-05-26 10:37:13 +01:00
|
|
|
i.Title = text.SanitizePlaintext(*form.Title) // don't allow html in site title
|
2021-06-23 15:35:57 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// validate & update site contact account if it's set on the form
|
2021-07-08 14:05:19 +01:00
|
|
|
if form.ContactUsername != nil {
|
2021-06-23 15:35:57 +01:00
|
|
|
// make sure the account with the given username exists in the db
|
2021-08-25 14:34:33 +01:00
|
|
|
contactAccount, err := p.db.GetLocalAccountByUsername(ctx, *form.ContactUsername)
|
2021-08-20 11:26:56 +01:00
|
|
|
if err != nil {
|
2021-07-08 14:05:19 +01:00
|
|
|
return nil, gtserror.NewErrorBadRequest(err, fmt.Sprintf("account with username %s not retrievable", *form.ContactUsername))
|
2021-06-23 15:35:57 +01:00
|
|
|
}
|
|
|
|
// make sure it has a user associated with it
|
|
|
|
contactUser := >smodel.User{}
|
2021-08-25 14:34:33 +01:00
|
|
|
if err := p.db.GetWhere(ctx, []db.Where{{Key: "account_id", Value: contactAccount.ID}}, contactUser); err != nil {
|
2021-07-08 14:05:19 +01:00
|
|
|
return nil, gtserror.NewErrorBadRequest(err, fmt.Sprintf("user for account with username %s not retrievable", *form.ContactUsername))
|
2021-06-23 15:35:57 +01:00
|
|
|
}
|
|
|
|
// suspended accounts cannot be contact accounts
|
|
|
|
if !contactAccount.SuspendedAt.IsZero() {
|
|
|
|
err := fmt.Errorf("selected contact account %s is suspended", contactAccount.Username)
|
|
|
|
return nil, gtserror.NewErrorBadRequest(err, err.Error())
|
|
|
|
}
|
|
|
|
// unconfirmed or unapproved users cannot be contacts
|
|
|
|
if contactUser.ConfirmedAt.IsZero() {
|
|
|
|
err := fmt.Errorf("user of selected contact account %s is not confirmed", contactAccount.Username)
|
|
|
|
return nil, gtserror.NewErrorBadRequest(err, err.Error())
|
|
|
|
}
|
|
|
|
if !contactUser.Approved {
|
|
|
|
err := fmt.Errorf("user of selected contact account %s is not approved", contactAccount.Username)
|
|
|
|
return nil, gtserror.NewErrorBadRequest(err, err.Error())
|
|
|
|
}
|
|
|
|
// contact account user must be admin or moderator otherwise what's the point of contacting them
|
|
|
|
if !contactUser.Admin && !contactUser.Moderator {
|
|
|
|
err := fmt.Errorf("user of selected contact account %s is neither admin nor moderator", contactAccount.Username)
|
|
|
|
return nil, gtserror.NewErrorBadRequest(err, err.Error())
|
|
|
|
}
|
|
|
|
i.ContactAccountID = contactAccount.ID
|
|
|
|
}
|
|
|
|
|
|
|
|
// validate & update site contact email if it's set on the form
|
2021-07-08 14:05:19 +01:00
|
|
|
if form.ContactEmail != nil {
|
2021-09-01 17:29:25 +01:00
|
|
|
if err := validate.Email(*form.ContactEmail); err != nil {
|
2021-06-23 15:35:57 +01:00
|
|
|
return nil, gtserror.NewErrorBadRequest(err, err.Error())
|
|
|
|
}
|
2021-07-08 14:05:19 +01:00
|
|
|
i.ContactEmail = *form.ContactEmail
|
2021-06-23 15:35:57 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// validate & update site short description if it's set on the form
|
2021-07-08 14:05:19 +01:00
|
|
|
if form.ShortDescription != nil {
|
2021-09-01 17:29:25 +01:00
|
|
|
if err := validate.SiteShortDescription(*form.ShortDescription); err != nil {
|
2021-06-23 15:35:57 +01:00
|
|
|
return nil, gtserror.NewErrorBadRequest(err, err.Error())
|
|
|
|
}
|
2021-07-26 19:25:54 +01:00
|
|
|
i.ShortDescription = text.SanitizeHTML(*form.ShortDescription) // html is OK in site description, but we should sanitize it
|
2021-06-23 15:35:57 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// validate & update site description if it's set on the form
|
2021-07-08 14:05:19 +01:00
|
|
|
if form.Description != nil {
|
2021-09-01 17:29:25 +01:00
|
|
|
if err := validate.SiteDescription(*form.Description); err != nil {
|
2021-06-23 15:35:57 +01:00
|
|
|
return nil, gtserror.NewErrorBadRequest(err, err.Error())
|
|
|
|
}
|
2021-07-26 19:25:54 +01:00
|
|
|
i.Description = text.SanitizeHTML(*form.Description) // html is OK in site description, but we should sanitize it
|
2021-06-23 15:35:57 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// validate & update site terms if it's set on the form
|
2021-07-08 14:05:19 +01:00
|
|
|
if form.Terms != nil {
|
2021-09-01 17:29:25 +01:00
|
|
|
if err := validate.SiteTerms(*form.Terms); err != nil {
|
2021-06-23 15:35:57 +01:00
|
|
|
return nil, gtserror.NewErrorBadRequest(err, err.Error())
|
|
|
|
}
|
2021-07-26 19:25:54 +01:00
|
|
|
i.Terms = text.SanitizeHTML(*form.Terms) // html is OK in site terms, but we should sanitize it
|
2021-06-23 15:35:57 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// process avatar if provided
|
|
|
|
if form.Avatar != nil && form.Avatar.Size != 0 {
|
2021-08-25 14:34:33 +01:00
|
|
|
_, err := p.accountProcessor.UpdateAvatar(ctx, form.Avatar, ia.ID)
|
2021-06-23 15:35:57 +01:00
|
|
|
if err != nil {
|
|
|
|
return nil, gtserror.NewErrorBadRequest(err, "error processing avatar")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// process header if provided
|
|
|
|
if form.Header != nil && form.Header.Size != 0 {
|
2021-08-25 14:34:33 +01:00
|
|
|
_, err := p.accountProcessor.UpdateHeader(ctx, form.Header, ia.ID)
|
2021-06-23 15:35:57 +01:00
|
|
|
if err != nil {
|
|
|
|
return nil, gtserror.NewErrorBadRequest(err, "error processing header")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-09-10 13:36:10 +01:00
|
|
|
if err := p.db.UpdateByPrimaryKey(ctx, i); err != nil {
|
2021-12-07 12:31:39 +00:00
|
|
|
return nil, gtserror.NewErrorInternalError(fmt.Errorf("db error updating instance %s: %s", host, err))
|
2021-06-23 15:35:57 +01:00
|
|
|
}
|
|
|
|
|
2021-10-04 14:24:19 +01:00
|
|
|
ai, err := p.tc.InstanceToAPIInstance(ctx, i)
|
2021-06-23 15:35:57 +01:00
|
|
|
if err != nil {
|
|
|
|
return nil, gtserror.NewErrorInternalError(fmt.Errorf("error converting instance to api representation: %s", err))
|
|
|
|
}
|
|
|
|
|
|
|
|
return ai, nil
|
|
|
|
}
|