| 
									
										
										
										
											2023-03-12 16:00:57 +01:00
										 |  |  | // GoToSocial | 
					
						
							|  |  |  | // Copyright (C) GoToSocial Authors admin@gotosocial.org | 
					
						
							|  |  |  | // SPDX-License-Identifier: AGPL-3.0-or-later | 
					
						
							|  |  |  | // | 
					
						
							|  |  |  | // 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-17 19:06:58 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-05-30 13:12:00 +02:00
										 |  |  | package processing | 
					
						
							| 
									
										
										
										
											2021-05-09 14:06:06 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | import ( | 
					
						
							| 
									
										
										
										
											2021-08-25 15:34:33 +02:00
										 |  |  | 	"context" | 
					
						
							| 
									
										
										
										
											2025-05-20 11:47:40 +02:00
										 |  |  | 	"errors" | 
					
						
							| 
									
										
										
										
											2021-05-09 14:06:06 +02:00
										 |  |  | 	"fmt" | 
					
						
							| 
									
										
										
										
											2025-05-20 11:47:40 +02:00
										 |  |  | 	"slices" | 
					
						
							|  |  |  | 	"strings" | 
					
						
							| 
									
										
										
										
											2021-05-09 14:06:06 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2025-04-26 15:34:10 +02:00
										 |  |  | 	apimodel "code.superseriousbusiness.org/gotosocial/internal/api/model" | 
					
						
							|  |  |  | 	"code.superseriousbusiness.org/gotosocial/internal/config" | 
					
						
							|  |  |  | 	"code.superseriousbusiness.org/gotosocial/internal/db" | 
					
						
							|  |  |  | 	"code.superseriousbusiness.org/gotosocial/internal/gtserror" | 
					
						
							|  |  |  | 	"code.superseriousbusiness.org/gotosocial/internal/gtsmodel" | 
					
						
							|  |  |  | 	"code.superseriousbusiness.org/gotosocial/internal/log" | 
					
						
							|  |  |  | 	"code.superseriousbusiness.org/gotosocial/internal/text" | 
					
						
							|  |  |  | 	"code.superseriousbusiness.org/gotosocial/internal/typeutils" | 
					
						
							|  |  |  | 	"code.superseriousbusiness.org/gotosocial/internal/util" | 
					
						
							| 
									
										
										
										
											2025-05-20 11:47:40 +02:00
										 |  |  | 	"code.superseriousbusiness.org/gotosocial/internal/util/xslices" | 
					
						
							| 
									
										
										
										
											2025-04-26 15:34:10 +02:00
										 |  |  | 	"code.superseriousbusiness.org/gotosocial/internal/validate" | 
					
						
							| 
									
										
										
										
											2021-05-09 14:06:06 +02:00
										 |  |  | ) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-02-22 16:05:26 +01:00
										 |  |  | func (p *Processor) InstanceGetV1(ctx context.Context) (*apimodel.InstanceV1, gtserror.WithCode) { | 
					
						
							| 
									
										
										
										
											2023-02-02 14:08:13 +01:00
										 |  |  | 	i, err := p.getThisInstance(ctx) | 
					
						
							|  |  |  | 	if err != nil { | 
					
						
							|  |  |  | 		return nil, gtserror.NewErrorInternalError(fmt.Errorf("db error fetching instance: %s", err)) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-09-23 17:44:11 +01:00
										 |  |  | 	ai, err := p.converter.InstanceToAPIV1Instance(ctx, i) | 
					
						
							| 
									
										
										
										
											2023-02-02 14:08:13 +01:00
										 |  |  | 	if err != nil { | 
					
						
							|  |  |  | 		return nil, gtserror.NewErrorInternalError(fmt.Errorf("error converting instance to api representation: %s", err)) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return ai, nil | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-02-22 16:05:26 +01:00
										 |  |  | func (p *Processor) InstanceGetV2(ctx context.Context) (*apimodel.InstanceV2, gtserror.WithCode) { | 
					
						
							| 
									
										
										
										
											2023-02-02 14:08:13 +01:00
										 |  |  | 	i, err := p.getThisInstance(ctx) | 
					
						
							|  |  |  | 	if err != nil { | 
					
						
							|  |  |  | 		return nil, gtserror.NewErrorInternalError(fmt.Errorf("db error fetching instance: %s", err)) | 
					
						
							| 
									
										
										
										
											2021-05-09 14:06:06 +02:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-09-23 17:44:11 +01:00
										 |  |  | 	ai, err := p.converter.InstanceToAPIV2Instance(ctx, i) | 
					
						
							| 
									
										
										
										
											2021-05-09 14:06:06 +02:00
										 |  |  | 	if err != nil { | 
					
						
							| 
									
										
										
										
											2021-06-13 18:42:28 +02:00
										 |  |  | 		return nil, gtserror.NewErrorInternalError(fmt.Errorf("error converting instance to api representation: %s", err)) | 
					
						
							| 
									
										
										
										
											2021-05-09 14:06:06 +02:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-05-09 20:34:27 +02:00
										 |  |  | 	return ai, nil | 
					
						
							| 
									
										
										
										
											2021-05-09 14:06:06 +02:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2021-06-23 16:35:57 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2025-05-20 11:47:40 +02:00
										 |  |  | func (p *Processor) InstancePeersGet( | 
					
						
							|  |  |  | 	ctx context.Context, | 
					
						
							|  |  |  | 	includeBlocked bool, | 
					
						
							|  |  |  | 	includeAllowed bool, | 
					
						
							|  |  |  | 	includeOpen bool, | 
					
						
							|  |  |  | 	flatten bool, | 
					
						
							|  |  |  | 	includeSeverity bool, | 
					
						
							|  |  |  | ) (any, gtserror.WithCode) { | 
					
						
							|  |  |  | 	var ( | 
					
						
							|  |  |  | 		domainPerms []gtsmodel.DomainPermission | 
					
						
							|  |  |  | 		apiDomains  []*apimodel.Domain | 
					
						
							|  |  |  | 	) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if includeBlocked { | 
					
						
							|  |  |  | 		blocks, err := p.state.DB.GetDomainBlocks(ctx) | 
					
						
							|  |  |  | 		if err != nil && !errors.Is(err, db.ErrNoEntries) { | 
					
						
							|  |  |  | 			err := gtserror.Newf("db error getting domain blocks: %w", err) | 
					
						
							|  |  |  | 			return nil, gtserror.NewErrorInternalError(err) | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2022-06-23 16:54:54 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2025-05-20 11:47:40 +02:00
										 |  |  | 		for _, block := range blocks { | 
					
						
							|  |  |  | 			domainPerms = append(domainPerms, block) | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	} else if includeAllowed { | 
					
						
							|  |  |  | 		allows, err := p.state.DB.GetDomainAllows(ctx) | 
					
						
							|  |  |  | 		if err != nil && !errors.Is(err, db.ErrNoEntries) { | 
					
						
							|  |  |  | 			err := gtserror.Newf("db error getting domain allows: %w", err) | 
					
						
							| 
									
										
										
										
											2022-06-23 16:54:54 +02:00
										 |  |  | 			return nil, gtserror.NewErrorInternalError(err) | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2025-05-20 11:47:40 +02:00
										 |  |  | 		for _, allow := range allows { | 
					
						
							|  |  |  | 			domainPerms = append(domainPerms, allow) | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2023-05-07 19:53:21 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2025-05-20 11:47:40 +02:00
										 |  |  | 	for _, domainPerm := range domainPerms { | 
					
						
							|  |  |  | 		// Domain may be in Punycode, | 
					
						
							|  |  |  | 		// de-punify it just in case. | 
					
						
							|  |  |  | 		domain := domainPerm.GetDomain() | 
					
						
							|  |  |  | 		depunied, err := util.DePunify(domain) | 
					
						
							|  |  |  | 		if err != nil { | 
					
						
							|  |  |  | 			log.Errorf(ctx, "couldn't depunify domain %s: %v", domain, err) | 
					
						
							|  |  |  | 			continue | 
					
						
							| 
									
										
										
										
											2022-06-23 16:54:54 +02:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2025-05-20 11:47:40 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		if util.PtrOrZero(domainPerm.GetObfuscate()) { | 
					
						
							|  |  |  | 			// Obfuscate the de-punified version. | 
					
						
							|  |  |  | 			depunied = obfuscate(depunied) | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		apiDomain := &apimodel.Domain{ | 
					
						
							|  |  |  | 			Domain:  depunied, | 
					
						
							|  |  |  | 			Comment: util.Ptr(domainPerm.GetPublicComment()), | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		if domainPerm.GetType() == gtsmodel.DomainPermissionBlock { | 
					
						
							|  |  |  | 			const severity = "suspend" | 
					
						
							|  |  |  | 			apiDomain.Severity = severity | 
					
						
							|  |  |  | 			suspendedAt := domainPerm.GetCreatedAt() | 
					
						
							|  |  |  | 			apiDomain.SuspendedAt = util.FormatISO8601(suspendedAt) | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		apiDomains = append(apiDomains, apiDomain) | 
					
						
							| 
									
										
										
										
											2022-06-23 16:54:54 +02:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2025-05-20 11:47:40 +02:00
										 |  |  | 	if includeOpen { | 
					
						
							|  |  |  | 		instances, err := p.state.DB.GetInstancePeers(ctx, false) | 
					
						
							|  |  |  | 		if err != nil && !errors.Is(err, db.ErrNoEntries) { | 
					
						
							|  |  |  | 			err = gtserror.Newf("db error getting instance peers: %w", err) | 
					
						
							| 
									
										
										
										
											2022-06-23 16:54:54 +02:00
										 |  |  | 			return nil, gtserror.NewErrorInternalError(err) | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2025-05-20 11:47:40 +02:00
										 |  |  | 		for _, instance := range instances { | 
					
						
							| 
									
										
										
										
											2023-05-07 19:53:21 +02:00
										 |  |  | 			// Domain may be in Punycode, | 
					
						
							|  |  |  | 			// de-punify it just in case. | 
					
						
							| 
									
										
										
										
											2025-05-20 11:47:40 +02:00
										 |  |  | 			domain := instance.Domain | 
					
						
							|  |  |  | 			depunied, err := util.DePunify(domain) | 
					
						
							| 
									
										
										
										
											2023-05-07 19:53:21 +02:00
										 |  |  | 			if err != nil { | 
					
						
							| 
									
										
										
										
											2025-05-20 11:47:40 +02:00
										 |  |  | 				log.Errorf(ctx, "couldn't depunify domain %s: %v", domain, err) | 
					
						
							| 
									
										
										
										
											2023-05-07 19:53:21 +02:00
										 |  |  | 				continue | 
					
						
							| 
									
										
										
										
											2022-06-23 16:54:54 +02:00
										 |  |  | 			} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2025-05-20 11:47:40 +02:00
										 |  |  | 			apiDomains = append( | 
					
						
							|  |  |  | 				apiDomains, | 
					
						
							|  |  |  | 				&apimodel.Domain{ | 
					
						
							|  |  |  | 					Domain: depunied, | 
					
						
							|  |  |  | 				}, | 
					
						
							|  |  |  | 			) | 
					
						
							| 
									
										
										
										
											2022-06-23 16:54:54 +02:00
										 |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2025-05-20 11:47:40 +02:00
										 |  |  | 	// Sort a-z. | 
					
						
							|  |  |  | 	slices.SortFunc( | 
					
						
							|  |  |  | 		apiDomains, | 
					
						
							|  |  |  | 		func(a, b *apimodel.Domain) int { | 
					
						
							|  |  |  | 			return strings.Compare(a.Domain, b.Domain) | 
					
						
							|  |  |  | 		}, | 
					
						
							|  |  |  | 	) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// Deduplicate. | 
					
						
							|  |  |  | 	apiDomains = xslices.DeduplicateFunc( | 
					
						
							|  |  |  | 		apiDomains, | 
					
						
							|  |  |  | 		func(v *apimodel.Domain) string { | 
					
						
							|  |  |  | 			return v.Domain | 
					
						
							|  |  |  | 		}, | 
					
						
							|  |  |  | 	) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if flatten { | 
					
						
							|  |  |  | 		// Return just the domains. | 
					
						
							|  |  |  | 		return xslices.Gather( | 
					
						
							|  |  |  | 			[]string{}, | 
					
						
							|  |  |  | 			apiDomains, | 
					
						
							|  |  |  | 			func(v *apimodel.Domain) string { | 
					
						
							|  |  |  | 				return v.Domain | 
					
						
							|  |  |  | 			}, | 
					
						
							|  |  |  | 		), nil | 
					
						
							| 
									
										
										
										
											2022-06-23 16:54:54 +02:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2025-05-20 11:47:40 +02:00
										 |  |  | 	return apiDomains, nil | 
					
						
							| 
									
										
										
										
											2022-06-23 16:54:54 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-08-19 14:33:15 +02:00
										 |  |  | func (p *Processor) InstanceGetRules(ctx context.Context) ([]apimodel.InstanceRule, gtserror.WithCode) { | 
					
						
							|  |  |  | 	i, err := p.getThisInstance(ctx) | 
					
						
							|  |  |  | 	if err != nil { | 
					
						
							|  |  |  | 		return nil, gtserror.NewErrorInternalError(fmt.Errorf("db error fetching instance: %s", err)) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-12-23 17:54:44 +00:00
										 |  |  | 	return typeutils.InstanceRulesToAPIRules(i.Rules), nil | 
					
						
							| 
									
										
										
										
											2023-08-19 14:33:15 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-02-22 16:05:26 +01:00
										 |  |  | func (p *Processor) InstancePatch(ctx context.Context, form *apimodel.InstanceSettingsUpdateRequest) (*apimodel.InstanceV1, gtserror.WithCode) { | 
					
						
							| 
									
										
										
										
											2024-01-05 13:39:31 +01:00
										 |  |  | 	// Fetch this instance from the db for processing. | 
					
						
							|  |  |  | 	instance, err := p.getThisInstance(ctx) | 
					
						
							| 
									
										
										
										
											2023-07-07 11:34:12 +02:00
										 |  |  | 	if err != nil { | 
					
						
							| 
									
										
										
										
											2024-01-05 13:39:31 +01:00
										 |  |  | 		err = fmt.Errorf("db error fetching instance: %w", err) | 
					
						
							|  |  |  | 		return nil, gtserror.NewErrorInternalError(err) | 
					
						
							| 
									
										
										
										
											2021-06-23 16:35:57 +02:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-01-05 13:39:31 +01:00
										 |  |  | 	// Fetch this instance account from the db for processing. | 
					
						
							|  |  |  | 	instanceAcc, err := p.state.DB.GetInstanceAccount(ctx, "") | 
					
						
							| 
									
										
										
										
											2021-08-20 12:26:56 +02:00
										 |  |  | 	if err != nil { | 
					
						
							| 
									
										
										
										
											2024-01-05 13:39:31 +01:00
										 |  |  | 		err = fmt.Errorf("db error fetching instance account: %w", err) | 
					
						
							|  |  |  | 		return nil, gtserror.NewErrorInternalError(err) | 
					
						
							| 
									
										
										
										
											2021-06-23 16:35:57 +02:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-01-05 13:39:31 +01:00
										 |  |  | 	// Columns to update | 
					
						
							|  |  |  | 	// in the database. | 
					
						
							|  |  |  | 	var columns []string | 
					
						
							| 
									
										
										
										
											2022-08-15 12:35:05 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-01-05 13:39:31 +01:00
										 |  |  | 	// Validate & update site | 
					
						
							|  |  |  | 	// title if set on the form. | 
					
						
							| 
									
										
										
										
											2021-07-08 15:05:19 +02:00
										 |  |  | 	if form.Title != nil { | 
					
						
							| 
									
										
										
										
											2024-01-05 13:39:31 +01:00
										 |  |  | 		title := *form.Title | 
					
						
							|  |  |  | 		if err := validate.SiteTitle(title); err != nil { | 
					
						
							|  |  |  | 			return nil, gtserror.NewErrorBadRequest(err, err.Error()) | 
					
						
							| 
									
										
										
										
											2021-06-23 16:35:57 +02:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2024-01-05 13:39:31 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		// Don't allow html in site title. | 
					
						
							| 
									
										
										
										
											2025-03-07 15:04:34 +01:00
										 |  |  | 		instance.Title = text.StripHTMLFromText(title) | 
					
						
							| 
									
										
										
										
											2024-01-05 13:39:31 +01:00
										 |  |  | 		columns = append(columns, "title") | 
					
						
							| 
									
										
										
										
											2021-06-23 16:35:57 +02:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-01-05 13:39:31 +01:00
										 |  |  | 	// Validate & update site contact | 
					
						
							|  |  |  | 	// account if set on the form. | 
					
						
							|  |  |  | 	// | 
					
						
							|  |  |  | 	// Empty username unsets contact. | 
					
						
							| 
									
										
										
										
											2021-07-08 15:05:19 +02:00
										 |  |  | 	if form.ContactUsername != nil { | 
					
						
							| 
									
										
										
										
											2024-01-05 13:39:31 +01:00
										 |  |  | 		contactAccountID, err := p.contactAccountIDForUsername(ctx, *form.ContactUsername) | 
					
						
							| 
									
										
										
										
											2022-10-03 10:46:11 +02:00
										 |  |  | 		if err != nil { | 
					
						
							| 
									
										
										
										
											2021-06-23 16:35:57 +02:00
										 |  |  | 			return nil, gtserror.NewErrorBadRequest(err, err.Error()) | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2024-01-05 13:39:31 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		columns = append(columns, "contact_account_id") | 
					
						
							|  |  |  | 		instance.ContactAccountID = contactAccountID | 
					
						
							| 
									
										
										
										
											2021-06-23 16:35:57 +02:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-01-05 13:39:31 +01:00
										 |  |  | 	// Validate & update contact | 
					
						
							|  |  |  | 	// email if set on the form. | 
					
						
							|  |  |  | 	// | 
					
						
							|  |  |  | 	// Empty email unsets contact. | 
					
						
							| 
									
										
										
										
											2021-07-08 15:05:19 +02:00
										 |  |  | 	if form.ContactEmail != nil { | 
					
						
							| 
									
										
										
										
											2022-06-24 10:43:21 +02:00
										 |  |  | 		contactEmail := *form.ContactEmail | 
					
						
							|  |  |  | 		if contactEmail != "" { | 
					
						
							|  |  |  | 			if err := validate.Email(contactEmail); err != nil { | 
					
						
							|  |  |  | 				return nil, gtserror.NewErrorBadRequest(err, err.Error()) | 
					
						
							|  |  |  | 			} | 
					
						
							| 
									
										
										
										
											2021-06-23 16:35:57 +02:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2024-01-05 13:39:31 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		columns = append(columns, "contact_email") | 
					
						
							| 
									
										
										
										
											2023-07-07 11:34:12 +02:00
										 |  |  | 		instance.ContactEmail = contactEmail | 
					
						
							| 
									
										
										
										
											2021-06-23 16:35:57 +02:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-01-05 13:39:31 +01:00
										 |  |  | 	// Validate & update site short | 
					
						
							|  |  |  | 	// description if set on the form. | 
					
						
							| 
									
										
										
										
											2021-07-08 15:05:19 +02:00
										 |  |  | 	if form.ShortDescription != nil { | 
					
						
							| 
									
										
										
										
											2024-01-05 13:39:31 +01:00
										 |  |  | 		shortDescription := *form.ShortDescription | 
					
						
							|  |  |  | 		if err := validate.SiteShortDescription(shortDescription); err != nil { | 
					
						
							| 
									
										
										
										
											2021-06-23 16:35:57 +02:00
										 |  |  | 			return nil, gtserror.NewErrorBadRequest(err, err.Error()) | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2024-01-05 13:39:31 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		// Parse description as Markdown, keep | 
					
						
							|  |  |  | 		// the raw version for later editing. | 
					
						
							|  |  |  | 		instance.ShortDescriptionText = shortDescription | 
					
						
							|  |  |  | 		instance.ShortDescription = p.formatter.FromMarkdown(ctx, p.parseMentionFunc, instanceAcc.ID, "", shortDescription).HTML | 
					
						
							|  |  |  | 		columns = append(columns, []string{"short_description", "short_description_text"}...) | 
					
						
							| 
									
										
										
										
											2021-06-23 16:35:57 +02:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// validate & update site description if it's set on the form | 
					
						
							| 
									
										
										
										
											2021-07-08 15:05:19 +02:00
										 |  |  | 	if form.Description != nil { | 
					
						
							| 
									
										
										
										
											2024-01-05 13:39:31 +01:00
										 |  |  | 		description := *form.Description | 
					
						
							|  |  |  | 		if err := validate.SiteDescription(description); err != nil { | 
					
						
							| 
									
										
										
										
											2021-06-23 16:35:57 +02:00
										 |  |  | 			return nil, gtserror.NewErrorBadRequest(err, err.Error()) | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2024-01-05 13:39:31 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		// Parse description as Markdown, keep | 
					
						
							|  |  |  | 		// the raw version for later editing. | 
					
						
							|  |  |  | 		instance.DescriptionText = description | 
					
						
							|  |  |  | 		instance.Description = p.formatter.FromMarkdown(ctx, p.parseMentionFunc, instanceAcc.ID, "", description).HTML | 
					
						
							|  |  |  | 		columns = append(columns, []string{"description", "description_text"}...) | 
					
						
							| 
									
										
										
										
											2021-06-23 16:35:57 +02:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-12-02 06:24:48 -05:00
										 |  |  | 	// validate & update site custom css if it's set on the form | 
					
						
							|  |  |  | 	if form.CustomCSS != nil { | 
					
						
							|  |  |  | 		customCSS := *form.CustomCSS | 
					
						
							|  |  |  | 		if err := validate.InstanceCustomCSS(customCSS); err != nil { | 
					
						
							|  |  |  | 			return nil, gtserror.NewErrorBadRequest(err, err.Error()) | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2025-03-07 15:04:34 +01:00
										 |  |  | 		instance.CustomCSS = text.StripHTMLFromText(customCSS) | 
					
						
							| 
									
										
										
										
											2024-12-02 06:24:48 -05:00
										 |  |  | 		columns = append(columns, []string{"custom_css"}...) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-01-05 13:39:31 +01:00
										 |  |  | 	// Validate & update site | 
					
						
							|  |  |  | 	// terms if set on the form. | 
					
						
							| 
									
										
										
										
											2021-07-08 15:05:19 +02:00
										 |  |  | 	if form.Terms != nil { | 
					
						
							| 
									
										
										
										
											2024-01-05 13:39:31 +01:00
										 |  |  | 		terms := *form.Terms | 
					
						
							|  |  |  | 		if err := validate.SiteTerms(terms); err != nil { | 
					
						
							| 
									
										
										
										
											2021-06-23 16:35:57 +02:00
										 |  |  | 			return nil, gtserror.NewErrorBadRequest(err, err.Error()) | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2024-01-05 13:39:31 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		// Parse terms as Markdown, keep | 
					
						
							|  |  |  | 		// the raw version for later editing. | 
					
						
							|  |  |  | 		instance.TermsText = terms | 
					
						
							|  |  |  | 		instance.Terms = p.formatter.FromMarkdown(ctx, p.parseMentionFunc, "", "", terms).HTML | 
					
						
							|  |  |  | 		columns = append(columns, []string{"terms", "terms_text"}...) | 
					
						
							| 
									
										
										
										
											2021-06-23 16:35:57 +02:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-11-08 18:11:06 +01:00
										 |  |  | 	var updateInstanceAccount bool | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-06-23 16:35:57 +02:00
										 |  |  | 	if form.Avatar != nil && form.Avatar.Size != 0 { | 
					
						
							| 
									
										
										
										
											2024-01-05 13:39:31 +01:00
										 |  |  | 		// Process instance avatar image + description. | 
					
						
							| 
									
										
										
										
											2024-06-26 15:01:16 +00:00
										 |  |  | 		avatarInfo, errWithCode := p.account.UpdateAvatar(ctx, | 
					
						
							|  |  |  | 			instanceAcc, | 
					
						
							|  |  |  | 			form.Avatar, | 
					
						
							|  |  |  | 			form.AvatarDescription, | 
					
						
							|  |  |  | 		) | 
					
						
							|  |  |  | 		if errWithCode != nil { | 
					
						
							|  |  |  | 			return nil, errWithCode | 
					
						
							| 
									
										
										
										
											2021-06-23 16:35:57 +02:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2024-01-05 13:39:31 +01:00
										 |  |  | 		instanceAcc.AvatarMediaAttachmentID = avatarInfo.ID | 
					
						
							|  |  |  | 		instanceAcc.AvatarMediaAttachment = avatarInfo | 
					
						
							| 
									
										
										
										
											2022-11-08 18:11:06 +01:00
										 |  |  | 		updateInstanceAccount = true | 
					
						
							| 
									
										
										
										
											2024-01-05 13:39:31 +01:00
										 |  |  | 	} else if form.AvatarDescription != nil && instanceAcc.AvatarMediaAttachment != nil { | 
					
						
							|  |  |  | 		// Process just the description for the existing avatar. | 
					
						
							|  |  |  | 		instanceAcc.AvatarMediaAttachment.Description = *form.AvatarDescription | 
					
						
							|  |  |  | 		if err := p.state.DB.UpdateAttachment(ctx, instanceAcc.AvatarMediaAttachment, "description"); err != nil { | 
					
						
							|  |  |  | 			err = fmt.Errorf("db error updating instance avatar description: %w", err) | 
					
						
							|  |  |  | 			return nil, gtserror.NewErrorInternalError(err) | 
					
						
							| 
									
										
										
										
											2023-02-04 15:53:11 +01:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2021-06-23 16:35:57 +02:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if form.Header != nil && form.Header.Size != 0 { | 
					
						
							| 
									
										
										
										
											2023-02-04 15:53:11 +01:00
										 |  |  | 		// process instance header image | 
					
						
							| 
									
										
										
										
											2024-06-26 15:01:16 +00:00
										 |  |  | 		headerInfo, errWithCode := p.account.UpdateHeader(ctx, | 
					
						
							|  |  |  | 			instanceAcc, | 
					
						
							|  |  |  | 			form.Header, | 
					
						
							|  |  |  | 			nil, | 
					
						
							|  |  |  | 		) | 
					
						
							|  |  |  | 		if errWithCode != nil { | 
					
						
							|  |  |  | 			return nil, errWithCode | 
					
						
							| 
									
										
										
										
											2021-06-23 16:35:57 +02:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2024-01-05 13:39:31 +01:00
										 |  |  | 		instanceAcc.HeaderMediaAttachmentID = headerInfo.ID | 
					
						
							|  |  |  | 		instanceAcc.HeaderMediaAttachment = headerInfo | 
					
						
							| 
									
										
										
										
											2022-11-08 18:11:06 +01:00
										 |  |  | 		updateInstanceAccount = true | 
					
						
							| 
									
										
										
										
											2021-06-23 16:35:57 +02:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-11-08 18:11:06 +01:00
										 |  |  | 	if updateInstanceAccount { | 
					
						
							| 
									
										
										
										
											2024-01-05 13:39:31 +01:00
										 |  |  | 		// If either avatar or header is updated, we need | 
					
						
							|  |  |  | 		// to update the instance account that stores them. | 
					
						
							|  |  |  | 		if err := p.state.DB.UpdateAccount(ctx, instanceAcc); err != nil { | 
					
						
							|  |  |  | 			err = fmt.Errorf("db error updating instance account: %w", err) | 
					
						
							|  |  |  | 			return nil, gtserror.NewErrorInternalError(err, err.Error()) | 
					
						
							| 
									
										
										
										
											2022-11-08 18:11:06 +01:00
										 |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-01-05 13:39:31 +01:00
										 |  |  | 	if len(columns) != 0 { | 
					
						
							|  |  |  | 		if err := p.state.DB.UpdateInstance(ctx, instance, columns...); err != nil { | 
					
						
							|  |  |  | 			err = fmt.Errorf("db error updating instance: %w", err) | 
					
						
							|  |  |  | 			return nil, gtserror.NewErrorInternalError(err, err.Error()) | 
					
						
							| 
									
										
										
										
											2022-11-08 18:11:06 +01:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2021-06-23 16:35:57 +02:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-01-05 13:39:31 +01:00
										 |  |  | 	return p.InstanceGetV1(ctx) | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | func (p *Processor) getThisInstance(ctx context.Context) (*gtsmodel.Instance, error) { | 
					
						
							|  |  |  | 	instance, err := p.state.DB.GetInstance(ctx, config.GetHost()) | 
					
						
							| 
									
										
										
										
											2021-06-23 16:35:57 +02:00
										 |  |  | 	if err != nil { | 
					
						
							| 
									
										
										
										
											2024-01-05 13:39:31 +01:00
										 |  |  | 		return nil, err | 
					
						
							| 
									
										
										
										
											2021-06-23 16:35:57 +02:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-01-05 13:39:31 +01:00
										 |  |  | 	return instance, nil | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | func (p *Processor) contactAccountIDForUsername(ctx context.Context, username string) (string, error) { | 
					
						
							|  |  |  | 	if username == "" { | 
					
						
							|  |  |  | 		// Easy: unset | 
					
						
							|  |  |  | 		// contact account. | 
					
						
							|  |  |  | 		return "", nil | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// Make sure local account with the given username exists in the db. | 
					
						
							|  |  |  | 	contactAccount, err := p.state.DB.GetAccountByUsernameDomain(ctx, username, "") | 
					
						
							|  |  |  | 	if err != nil { | 
					
						
							|  |  |  | 		err = fmt.Errorf("db error getting selected contact account with username %s: %w", username, err) | 
					
						
							|  |  |  | 		return "", err | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// Make sure account corresponds to a user. | 
					
						
							|  |  |  | 	contactUser, err := p.state.DB.GetUserByAccountID(ctx, contactAccount.ID) | 
					
						
							|  |  |  | 	if err != nil { | 
					
						
							|  |  |  | 		err = fmt.Errorf("db error getting user for selected contact account %s: %w", username, err) | 
					
						
							|  |  |  | 		return "", err | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// Ensure account/user is: | 
					
						
							|  |  |  | 	// | 
					
						
							|  |  |  | 	// - confirmed and approved | 
					
						
							|  |  |  | 	// - not suspended | 
					
						
							|  |  |  | 	// - an admin or a moderator | 
					
						
							|  |  |  | 	if contactUser.ConfirmedAt.IsZero() { | 
					
						
							|  |  |  | 		err := fmt.Errorf("user of selected contact account %s is not confirmed", contactAccount.Username) | 
					
						
							|  |  |  | 		return "", err | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if !*contactUser.Approved { | 
					
						
							|  |  |  | 		err := fmt.Errorf("user of selected contact account %s is not approved", contactAccount.Username) | 
					
						
							|  |  |  | 		return "", err | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if !contactAccount.SuspendedAt.IsZero() { | 
					
						
							|  |  |  | 		err := fmt.Errorf("selected contact account %s is suspended", contactAccount.Username) | 
					
						
							|  |  |  | 		return "", err | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if !*contactUser.Admin && !*contactUser.Moderator { | 
					
						
							|  |  |  | 		err := fmt.Errorf("user of selected contact account %s is neither admin nor moderator", contactAccount.Username) | 
					
						
							|  |  |  | 		return "", err | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// All good! | 
					
						
							|  |  |  | 	return contactAccount.ID, nil | 
					
						
							| 
									
										
										
										
											2021-06-23 16:35:57 +02:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2022-06-23 16:54:54 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | func obfuscate(domain string) string { | 
					
						
							|  |  |  | 	obfuscated := make([]rune, len(domain)) | 
					
						
							|  |  |  | 	for i, r := range domain { | 
					
						
							|  |  |  | 		if i%3 == 1 || i%5 == 1 { | 
					
						
							|  |  |  | 			obfuscated[i] = '*' | 
					
						
							|  |  |  | 		} else { | 
					
						
							|  |  |  | 			obfuscated[i] = r | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	return string(obfuscated) | 
					
						
							|  |  |  | } |