mirror of
https://github.com/superseriousbusiness/gotosocial
synced 2024-12-16 18:50:33 +01:00
aa07750bdb
* use bun.Ident for user queries * use bun.Ident for account queries * use bun.Ident for media queries * add DeleteAccount func * remove CaseInsensitive in Where+use Ident ipv Safe * update admin db * update domain, use ident * update emoji, use ident * update instance queries, use bun.Ident * fix media * update mentions, use bun ident * update relationship + tests * use tableexpr * add test follows to bun db test suite * update notifications * updatebyprimarykey => updatebyid * fix session * prefer explicit ID to pk * fix little fucky wucky * remove workaround * use proper db func for attachment selection * update status db * add m2m entries in test rig * fix up timeline * go fmt * fix status put issue * update GetAccountStatuses
272 lines
6.7 KiB
Go
272 lines
6.7 KiB
Go
/*
|
|
GoToSocial
|
|
Copyright (C) 2021-2022 GoToSocial Authors admin@gotosocial.org
|
|
|
|
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/>.
|
|
*/
|
|
|
|
package account
|
|
|
|
import (
|
|
"context"
|
|
"errors"
|
|
"fmt"
|
|
"time"
|
|
|
|
"github.com/superseriousbusiness/gotosocial/cmd/gotosocial/action"
|
|
"github.com/superseriousbusiness/gotosocial/internal/config"
|
|
"github.com/superseriousbusiness/gotosocial/internal/db/bundb"
|
|
"github.com/superseriousbusiness/gotosocial/internal/validate"
|
|
"golang.org/x/crypto/bcrypt"
|
|
)
|
|
|
|
// Create creates a new account in the database using the provided flags.
|
|
var Create action.GTSAction = func(ctx context.Context) error {
|
|
dbConn, err := bundb.NewBunDBService(ctx)
|
|
if err != nil {
|
|
return fmt.Errorf("error creating dbservice: %s", err)
|
|
}
|
|
|
|
username := config.GetAdminAccountUsername()
|
|
if username == "" {
|
|
return errors.New("no username set")
|
|
}
|
|
if err := validate.Username(username); err != nil {
|
|
return err
|
|
}
|
|
|
|
email := config.GetAdminAccountEmail()
|
|
if email == "" {
|
|
return errors.New("no email set")
|
|
}
|
|
if err := validate.Email(email); err != nil {
|
|
return err
|
|
}
|
|
|
|
password := config.GetAdminAccountPassword()
|
|
if password == "" {
|
|
return errors.New("no password set")
|
|
}
|
|
if err := validate.NewPassword(password); err != nil {
|
|
return err
|
|
}
|
|
|
|
_, err = dbConn.NewSignup(ctx, username, "", false, email, password, nil, "", "", false, false)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
return dbConn.Stop(ctx)
|
|
}
|
|
|
|
// Confirm sets a user to Approved, sets Email to the current UnconfirmedEmail value, and sets ConfirmedAt to now.
|
|
var Confirm action.GTSAction = func(ctx context.Context) error {
|
|
dbConn, err := bundb.NewBunDBService(ctx)
|
|
if err != nil {
|
|
return fmt.Errorf("error creating dbservice: %s", err)
|
|
}
|
|
|
|
username := config.GetAdminAccountUsername()
|
|
if username == "" {
|
|
return errors.New("no username set")
|
|
}
|
|
if err := validate.Username(username); err != nil {
|
|
return err
|
|
}
|
|
|
|
a, err := dbConn.GetAccountByUsernameDomain(ctx, username, "")
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
u, err := dbConn.GetUserByAccountID(ctx, a.ID)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
updatingColumns := []string{"approved", "email", "confirmed_at", "updated_at"}
|
|
approved := true
|
|
u.Approved = &approved
|
|
u.Email = u.UnconfirmedEmail
|
|
u.ConfirmedAt = time.Now()
|
|
u.UpdatedAt = time.Now()
|
|
if err := dbConn.UpdateByID(ctx, u, u.ID, updatingColumns...); err != nil {
|
|
return err
|
|
}
|
|
|
|
return dbConn.Stop(ctx)
|
|
}
|
|
|
|
// Promote sets a user to admin.
|
|
var Promote action.GTSAction = func(ctx context.Context) error {
|
|
dbConn, err := bundb.NewBunDBService(ctx)
|
|
if err != nil {
|
|
return fmt.Errorf("error creating dbservice: %s", err)
|
|
}
|
|
|
|
username := config.GetAdminAccountUsername()
|
|
if username == "" {
|
|
return errors.New("no username set")
|
|
}
|
|
if err := validate.Username(username); err != nil {
|
|
return err
|
|
}
|
|
|
|
a, err := dbConn.GetAccountByUsernameDomain(ctx, username, "")
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
u, err := dbConn.GetUserByAccountID(ctx, a.ID)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
updatingColumns := []string{"admin", "updated_at"}
|
|
admin := true
|
|
u.Admin = &admin
|
|
u.UpdatedAt = time.Now()
|
|
if _, err := dbConn.UpdateUser(ctx, u, updatingColumns...); err != nil {
|
|
return err
|
|
}
|
|
|
|
return dbConn.Stop(ctx)
|
|
}
|
|
|
|
// Demote sets admin on a user to false.
|
|
var Demote action.GTSAction = func(ctx context.Context) error {
|
|
dbConn, err := bundb.NewBunDBService(ctx)
|
|
if err != nil {
|
|
return fmt.Errorf("error creating dbservice: %s", err)
|
|
}
|
|
|
|
username := config.GetAdminAccountUsername()
|
|
if username == "" {
|
|
return errors.New("no username set")
|
|
}
|
|
if err := validate.Username(username); err != nil {
|
|
return err
|
|
}
|
|
|
|
a, err := dbConn.GetAccountByUsernameDomain(ctx, username, "")
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
u, err := dbConn.GetUserByAccountID(ctx, a.ID)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
updatingColumns := []string{"admin", "updated_at"}
|
|
admin := false
|
|
u.Admin = &admin
|
|
u.UpdatedAt = time.Now()
|
|
if _, err := dbConn.UpdateUser(ctx, u, updatingColumns...); err != nil {
|
|
return err
|
|
}
|
|
|
|
return dbConn.Stop(ctx)
|
|
}
|
|
|
|
// Disable sets Disabled to true on a user.
|
|
var Disable action.GTSAction = func(ctx context.Context) error {
|
|
dbConn, err := bundb.NewBunDBService(ctx)
|
|
if err != nil {
|
|
return fmt.Errorf("error creating dbservice: %s", err)
|
|
}
|
|
|
|
username := config.GetAdminAccountUsername()
|
|
if username == "" {
|
|
return errors.New("no username set")
|
|
}
|
|
if err := validate.Username(username); err != nil {
|
|
return err
|
|
}
|
|
|
|
a, err := dbConn.GetAccountByUsernameDomain(ctx, username, "")
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
u, err := dbConn.GetUserByAccountID(ctx, a.ID)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
updatingColumns := []string{"disabled", "updated_at"}
|
|
disabled := true
|
|
u.Disabled = &disabled
|
|
u.UpdatedAt = time.Now()
|
|
if _, err := dbConn.UpdateUser(ctx, u, updatingColumns...); err != nil {
|
|
return err
|
|
}
|
|
|
|
return dbConn.Stop(ctx)
|
|
}
|
|
|
|
// Suspend suspends the target account, cleanly removing all of its media, followers, following, likes, statuses, etc.
|
|
var Suspend action.GTSAction = func(ctx context.Context) error {
|
|
// TODO
|
|
return nil
|
|
}
|
|
|
|
// Password sets the password of target account.
|
|
var Password action.GTSAction = func(ctx context.Context) error {
|
|
dbConn, err := bundb.NewBunDBService(ctx)
|
|
if err != nil {
|
|
return fmt.Errorf("error creating dbservice: %s", err)
|
|
}
|
|
|
|
username := config.GetAdminAccountUsername()
|
|
if username == "" {
|
|
return errors.New("no username set")
|
|
}
|
|
if err := validate.Username(username); err != nil {
|
|
return err
|
|
}
|
|
|
|
password := config.GetAdminAccountPassword()
|
|
if password == "" {
|
|
return errors.New("no password set")
|
|
}
|
|
if err := validate.NewPassword(password); err != nil {
|
|
return err
|
|
}
|
|
|
|
a, err := dbConn.GetAccountByUsernameDomain(ctx, username, "")
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
u, err := dbConn.GetUserByAccountID(ctx, a.ID)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
pw, err := bcrypt.GenerateFromPassword([]byte(password), bcrypt.DefaultCost)
|
|
if err != nil {
|
|
return fmt.Errorf("error hashing password: %s", err)
|
|
}
|
|
|
|
updatingColumns := []string{"encrypted_password", "updated_at"}
|
|
u.EncryptedPassword = string(pw)
|
|
u.UpdatedAt = time.Now()
|
|
if _, err := dbConn.UpdateUser(ctx, u, updatingColumns...); err != nil {
|
|
return err
|
|
}
|
|
|
|
return nil
|
|
}
|