| 
									
										
										
										
											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/>. | 
					
						
							| 
									
										
										
										
											2022-04-15 14:33:01 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | package web | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | import ( | 
					
						
							|  |  |  | 	"context" | 
					
						
							|  |  |  | 	"fmt" | 
					
						
							|  |  |  | 	"net/http" | 
					
						
							| 
									
										
										
										
											2022-06-08 20:38:03 +02:00
										 |  |  | 	"strings" | 
					
						
							| 
									
										
										
										
											2022-04-15 14:33:01 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	"github.com/gin-gonic/gin" | 
					
						
							| 
									
										
										
										
											2022-06-08 20:22:49 +02:00
										 |  |  | 	apimodel "github.com/superseriousbusiness/gotosocial/internal/api/model" | 
					
						
							| 
									
										
										
										
											2023-01-02 13:10:50 +01:00
										 |  |  | 	apiutil "github.com/superseriousbusiness/gotosocial/internal/api/util" | 
					
						
							| 
									
										
										
										
											2022-06-08 20:38:03 +02:00
										 |  |  | 	"github.com/superseriousbusiness/gotosocial/internal/gtserror" | 
					
						
							| 
									
										
										
										
											2025-03-26 16:59:39 +01:00
										 |  |  | 	"github.com/superseriousbusiness/gotosocial/internal/log" | 
					
						
							| 
									
										
										
										
											2022-04-15 14:33:01 +02:00
										 |  |  | ) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2025-03-26 16:59:39 +01:00
										 |  |  | type profile struct { | 
					
						
							|  |  |  | 	instance       *apimodel.InstanceV1 | 
					
						
							|  |  |  | 	account        *apimodel.WebAccount | 
					
						
							|  |  |  | 	rssFeed        string | 
					
						
							|  |  |  | 	robotsMeta     string | 
					
						
							|  |  |  | 	pinnedStatuses []*apimodel.WebStatus | 
					
						
							|  |  |  | 	statusResp     *apimodel.PageableResponse | 
					
						
							|  |  |  | 	paging         bool | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // prepareProfile does content type checks, fetches the | 
					
						
							|  |  |  | // targeted account from the db, and converts it to its | 
					
						
							|  |  |  | // web representation, along with other data needed to | 
					
						
							|  |  |  | // render the web view of the account. | 
					
						
							|  |  |  | func (m *Module) prepareProfile(c *gin.Context) *profile { | 
					
						
							| 
									
										
										
										
											2022-04-15 14:33:01 +02:00
										 |  |  | 	ctx := c.Request.Context() | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-07-07 14:58:53 +02:00
										 |  |  | 	// We'll need the instance later, and we can also use it | 
					
						
							|  |  |  | 	// before then to make it easier to return a web error. | 
					
						
							|  |  |  | 	instance, errWithCode := m.processor.InstanceGetV1(ctx) | 
					
						
							|  |  |  | 	if errWithCode != nil { | 
					
						
							|  |  |  | 		apiutil.WebErrorHandler(c, errWithCode, m.processor.InstanceGetV1) | 
					
						
							| 
									
										
										
										
											2025-03-26 16:59:39 +01:00
										 |  |  | 		return nil | 
					
						
							| 
									
										
										
										
											2022-06-08 20:38:03 +02:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-07-07 14:58:53 +02:00
										 |  |  | 	// Return instance we already got from the db, | 
					
						
							|  |  |  | 	// don't try to fetch it again when erroring. | 
					
						
							|  |  |  | 	instanceGet := func(ctx context.Context) (*apimodel.InstanceV1, gtserror.WithCode) { | 
					
						
							|  |  |  | 		return instance, nil | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2025-03-26 16:59:39 +01:00
										 |  |  | 	// Parse + normalize account username from the URL. | 
					
						
							|  |  |  | 	requestedUsername, errWithCode := apiutil.ParseUsername(c.Param(apiutil.UsernameKey)) | 
					
						
							| 
									
										
										
										
											2023-07-07 14:58:53 +02:00
										 |  |  | 	if errWithCode != nil { | 
					
						
							|  |  |  | 		apiutil.WebErrorHandler(c, errWithCode, instanceGet) | 
					
						
							| 
									
										
										
										
											2025-03-26 16:59:39 +01:00
										 |  |  | 		return nil | 
					
						
							| 
									
										
										
										
											2022-04-15 14:33:01 +02:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2025-03-26 16:59:39 +01:00
										 |  |  | 	requestedUsername = strings.ToLower(requestedUsername) | 
					
						
							| 
									
										
										
										
											2022-04-15 14:33:01 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2025-03-26 16:59:39 +01:00
										 |  |  | 	// Check what type of content is being requested. | 
					
						
							|  |  |  | 	// If we're getting an AP request on this endpoint | 
					
						
							|  |  |  | 	// we should render the AP representation instead. | 
					
						
							|  |  |  | 	contentType, err := apiutil.NegotiateAccept(c, apiutil.HTMLOrActivityPubHeaders...) | 
					
						
							| 
									
										
										
										
											2022-04-15 14:33:01 +02:00
										 |  |  | 	if err != nil { | 
					
						
							| 
									
										
										
										
											2023-07-07 14:58:53 +02:00
										 |  |  | 		apiutil.WebErrorHandler(c, gtserror.NewErrorNotAcceptable(err, err.Error()), instanceGet) | 
					
						
							| 
									
										
										
										
											2025-03-26 16:59:39 +01:00
										 |  |  | 		return nil | 
					
						
							| 
									
										
										
										
											2022-04-15 14:33:01 +02:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2025-03-26 16:59:39 +01:00
										 |  |  | 	if contentType == string(apiutil.AppActivityJSON) || | 
					
						
							|  |  |  | 		contentType == string(apiutil.AppActivityLDJSON) { | 
					
						
							|  |  |  | 		// AP account representation has | 
					
						
							|  |  |  | 		// been requested, return that. | 
					
						
							|  |  |  | 		m.returnAPAccount(c, requestedUsername, contentType) | 
					
						
							|  |  |  | 		return nil | 
					
						
							| 
									
										
										
										
											2022-04-15 14:33:01 +02:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2025-03-26 16:59:39 +01:00
										 |  |  | 	// text/html has been requested. | 
					
						
							|  |  |  | 	// | 
					
						
							|  |  |  | 	// Proceed with getting the web | 
					
						
							|  |  |  | 	// representation of the account. | 
					
						
							|  |  |  | 	account, errWithCode := m.processor.Account().GetWeb(ctx, requestedUsername) | 
					
						
							| 
									
										
										
										
											2022-04-15 14:33:01 +02:00
										 |  |  | 	if errWithCode != nil { | 
					
						
							| 
									
										
										
										
											2023-05-12 08:16:41 +00:00
										 |  |  | 		apiutil.WebErrorHandler(c, errWithCode, instanceGet) | 
					
						
							| 
									
										
										
										
											2025-03-26 16:59:39 +01:00
										 |  |  | 		return nil | 
					
						
							| 
									
										
										
										
											2022-04-15 14:33:01 +02:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2025-03-26 16:59:39 +01:00
										 |  |  | 	// If target account is suspended, | 
					
						
							|  |  |  | 	// this page should not be visible. | 
					
						
							|  |  |  | 	// | 
					
						
							| 
									
										
										
										
											2023-07-07 14:58:53 +02:00
										 |  |  | 	// TODO: change this to 410? | 
					
						
							| 
									
										
										
										
											2025-03-26 16:59:39 +01:00
										 |  |  | 	if account.Suspended { | 
					
						
							|  |  |  | 		err := fmt.Errorf("target account %s is suspended", requestedUsername) | 
					
						
							| 
									
										
										
										
											2023-07-07 14:58:53 +02:00
										 |  |  | 		apiutil.WebErrorHandler(c, gtserror.NewErrorNotFound(err), instanceGet) | 
					
						
							| 
									
										
										
										
											2025-03-26 16:59:39 +01:00
										 |  |  | 		return nil | 
					
						
							| 
									
										
										
										
											2022-04-15 14:33:01 +02:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2025-03-26 16:59:39 +01:00
										 |  |  | 	// Only generate RSS link if | 
					
						
							|  |  |  | 	// account has RSS enabled. | 
					
						
							| 
									
										
										
										
											2022-10-08 14:00:39 +02:00
										 |  |  | 	var rssFeed string | 
					
						
							| 
									
										
										
										
											2025-03-26 16:59:39 +01:00
										 |  |  | 	if account.EnableRSS { | 
					
						
							|  |  |  | 		rssFeed = "/@" + account.Username + "/feed.rss" | 
					
						
							| 
									
										
										
										
											2022-10-08 14:00:39 +02:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2025-03-26 16:59:39 +01:00
										 |  |  | 	// Only allow search robots | 
					
						
							|  |  |  | 	// if account is discoverable. | 
					
						
							| 
									
										
										
										
											2022-09-29 12:03:17 +02:00
										 |  |  | 	var robotsMeta string | 
					
						
							| 
									
										
										
										
											2025-03-26 16:59:39 +01:00
										 |  |  | 	if account.Discoverable { | 
					
						
							| 
									
										
										
										
											2025-02-05 12:47:13 +01:00
										 |  |  | 		robotsMeta = apiutil.RobotsDirectivesAllowSome | 
					
						
							| 
									
										
										
										
											2022-09-29 12:03:17 +02:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2025-03-26 16:59:39 +01:00
										 |  |  | 	// Check if paging. | 
					
						
							|  |  |  | 	maxStatusID := apiutil.ParseMaxID(c.Query(apiutil.MaxIDKey), "") | 
					
						
							|  |  |  | 	paging := maxStatusID != "" | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// If not paging, load pinned statuses. | 
					
						
							| 
									
										
										
										
											2023-02-25 13:16:30 +01:00
										 |  |  | 	var ( | 
					
						
							| 
									
										
										
										
											2025-03-26 16:59:39 +01:00
										 |  |  | 		mediaOnly      = account.WebLayout == "gallery" | 
					
						
							| 
									
										
										
										
											2024-07-12 20:36:03 +02:00
										 |  |  | 		pinnedStatuses []*apimodel.WebStatus | 
					
						
							| 
									
										
										
										
											2023-02-25 13:16:30 +01:00
										 |  |  | 	) | 
					
						
							|  |  |  | 	if !paging { | 
					
						
							| 
									
										
										
										
											2025-03-26 16:59:39 +01:00
										 |  |  | 		var errWithCode gtserror.WithCode | 
					
						
							|  |  |  | 		pinnedStatuses, errWithCode = m.processor.Account().WebStatusesGetPinned( | 
					
						
							|  |  |  | 			ctx, | 
					
						
							|  |  |  | 			account.ID, | 
					
						
							|  |  |  | 			mediaOnly, | 
					
						
							|  |  |  | 		) | 
					
						
							| 
									
										
										
										
											2023-02-25 13:16:30 +01:00
										 |  |  | 		if errWithCode != nil { | 
					
						
							| 
									
										
										
										
											2023-05-12 08:16:41 +00:00
										 |  |  | 			apiutil.WebErrorHandler(c, errWithCode, instanceGet) | 
					
						
							| 
									
										
										
										
											2025-03-26 16:59:39 +01:00
										 |  |  | 			return nil | 
					
						
							| 
									
										
										
										
											2023-02-25 13:16:30 +01:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2023-07-07 14:58:53 +02:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2025-03-31 15:51:17 +02:00
										 |  |  | 	// Limit varies depending on whether this is a gallery view or not. | 
					
						
							|  |  |  | 	// If gallery view, we want a nice full screen of media, else we | 
					
						
							|  |  |  | 	// don't want to overwhelm the viewer with a shitload of posts. | 
					
						
							|  |  |  | 	var limit int | 
					
						
							|  |  |  | 	if account.WebLayout == "gallery" { | 
					
						
							|  |  |  | 		limit = 40 | 
					
						
							|  |  |  | 	} else { | 
					
						
							|  |  |  | 		limit = 20 | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-07-07 14:58:53 +02:00
										 |  |  | 	// Get statuses from maxStatusID onwards (or from top if empty string). | 
					
						
							| 
									
										
										
										
											2025-03-26 16:59:39 +01:00
										 |  |  | 	statusResp, errWithCode := m.processor.Account().WebStatusesGet( | 
					
						
							|  |  |  | 		ctx, | 
					
						
							|  |  |  | 		account.ID, | 
					
						
							|  |  |  | 		mediaOnly, | 
					
						
							| 
									
										
										
										
											2025-03-31 15:51:17 +02:00
										 |  |  | 		limit, | 
					
						
							| 
									
										
										
										
											2025-03-26 16:59:39 +01:00
										 |  |  | 		maxStatusID, | 
					
						
							|  |  |  | 	) | 
					
						
							| 
									
										
										
										
											2023-07-07 14:58:53 +02:00
										 |  |  | 	if errWithCode != nil { | 
					
						
							|  |  |  | 		apiutil.WebErrorHandler(c, errWithCode, instanceGet) | 
					
						
							| 
									
										
										
										
											2025-03-26 16:59:39 +01:00
										 |  |  | 		return nil | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return &profile{ | 
					
						
							|  |  |  | 		instance:       instance, | 
					
						
							|  |  |  | 		account:        account, | 
					
						
							|  |  |  | 		rssFeed:        rssFeed, | 
					
						
							|  |  |  | 		robotsMeta:     robotsMeta, | 
					
						
							|  |  |  | 		pinnedStatuses: pinnedStatuses, | 
					
						
							|  |  |  | 		statusResp:     statusResp, | 
					
						
							|  |  |  | 		paging:         paging, | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // profileGETHandler selects the appropriate rendering | 
					
						
							|  |  |  | // mode for the target account profile, and serves that. | 
					
						
							|  |  |  | func (m *Module) profileGETHandler(c *gin.Context) { | 
					
						
							|  |  |  | 	p := m.prepareProfile(c) | 
					
						
							|  |  |  | 	if p == nil { | 
					
						
							|  |  |  | 		// Something went wrong, | 
					
						
							|  |  |  | 		// error already written. | 
					
						
							| 
									
										
										
										
											2023-07-07 14:58:53 +02:00
										 |  |  | 		return | 
					
						
							| 
									
										
										
										
											2023-02-25 13:16:30 +01:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2025-03-26 16:59:39 +01:00
										 |  |  | 	// Choose desired web renderer for this acct. | 
					
						
							|  |  |  | 	switch wrm := p.account.WebLayout; wrm { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// El classico. | 
					
						
							|  |  |  | 	case "", "microblog": | 
					
						
							|  |  |  | 		m.profileMicroblog(c, p) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// 'gram style media gallery. | 
					
						
							|  |  |  | 	case "gallery": | 
					
						
							|  |  |  | 		m.profileGallery(c, p) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	default: | 
					
						
							|  |  |  | 		log.Panicf( | 
					
						
							|  |  |  | 			c.Request.Context(), | 
					
						
							|  |  |  | 			"unknown webrenderingmode %s", wrm, | 
					
						
							|  |  |  | 		) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // profileMicroblog serves the profile | 
					
						
							|  |  |  | // in classic GtS "microblog" view. | 
					
						
							|  |  |  | func (m *Module) profileMicroblog(c *gin.Context, p *profile) { | 
					
						
							| 
									
										
										
										
											2024-03-25 18:32:24 +01:00
										 |  |  | 	// Prepare stylesheets for profile. | 
					
						
							| 
									
										
										
										
											2024-12-02 06:24:48 -05:00
										 |  |  | 	stylesheets := make([]string, 0, 7) | 
					
						
							| 
									
										
										
										
											2024-03-25 18:32:24 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	// Basic profile stylesheets. | 
					
						
							|  |  |  | 	stylesheets = append( | 
					
						
							|  |  |  | 		stylesheets, | 
					
						
							|  |  |  | 		[]string{ | 
					
						
							|  |  |  | 			cssFA, | 
					
						
							|  |  |  | 			cssStatus, | 
					
						
							|  |  |  | 			cssThread, | 
					
						
							|  |  |  | 			cssProfile, | 
					
						
							|  |  |  | 		}..., | 
					
						
							|  |  |  | 	) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// User-selected theme if set. | 
					
						
							| 
									
										
										
										
											2025-03-26 16:59:39 +01:00
										 |  |  | 	if theme := p.account.Theme; theme != "" { | 
					
						
							| 
									
										
										
										
											2024-03-25 18:32:24 +01:00
										 |  |  | 		stylesheets = append( | 
					
						
							|  |  |  | 			stylesheets, | 
					
						
							|  |  |  | 			themesPathPrefix+"/"+theme, | 
					
						
							|  |  |  | 		) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// Custom CSS for this user last in cascade. | 
					
						
							|  |  |  | 	stylesheets = append( | 
					
						
							|  |  |  | 		stylesheets, | 
					
						
							| 
									
										
										
										
											2025-03-26 16:59:39 +01:00
										 |  |  | 		"/@"+p.account.Username+"/custom.css", | 
					
						
							| 
									
										
										
										
											2024-03-25 18:32:24 +01:00
										 |  |  | 	) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-12-27 11:23:52 +01:00
										 |  |  | 	page := apiutil.WebPage{ | 
					
						
							| 
									
										
										
										
											2024-03-25 18:32:24 +01:00
										 |  |  | 		Template:    "profile.tmpl", | 
					
						
							| 
									
										
										
										
											2025-03-26 16:59:39 +01:00
										 |  |  | 		Instance:    p.instance, | 
					
						
							|  |  |  | 		OGMeta:      apiutil.OGBase(p.instance).WithAccount(p.account), | 
					
						
							|  |  |  | 		Stylesheets: stylesheets, | 
					
						
							| 
									
										
										
										
											2025-03-31 15:51:17 +02:00
										 |  |  | 		Javascript: []apiutil.JavascriptEntry{ | 
					
						
							|  |  |  | 			{ | 
					
						
							|  |  |  | 				Src:   jsFrontend, | 
					
						
							|  |  |  | 				Async: true, | 
					
						
							|  |  |  | 				Defer: true, | 
					
						
							|  |  |  | 			}, | 
					
						
							|  |  |  | 			{ | 
					
						
							|  |  |  | 				Bottom: true, | 
					
						
							| 
									
										
										
										
											2025-04-22 12:20:54 +02:00
										 |  |  | 				Src:    jsFrontendPrerender, | 
					
						
							| 
									
										
										
										
											2025-03-31 15:51:17 +02:00
										 |  |  | 			}, | 
					
						
							|  |  |  | 		}, | 
					
						
							| 
									
										
										
										
											2025-03-26 16:59:39 +01:00
										 |  |  | 		Extra: map[string]any{ | 
					
						
							|  |  |  | 			"account":          p.account, | 
					
						
							|  |  |  | 			"rssFeed":          p.rssFeed, | 
					
						
							|  |  |  | 			"robotsMeta":       p.robotsMeta, | 
					
						
							|  |  |  | 			"statuses":         p.statusResp.Items, | 
					
						
							|  |  |  | 			"statuses_next":    p.statusResp.NextLink, | 
					
						
							|  |  |  | 			"pinned_statuses":  p.pinnedStatuses, | 
					
						
							|  |  |  | 			"show_back_to_top": p.paging, | 
					
						
							|  |  |  | 		}, | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	apiutil.TemplateWebPage(c, page) | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // profileMicroblog serves the profile | 
					
						
							|  |  |  | // in media-only 'gram-style gallery view. | 
					
						
							|  |  |  | func (m *Module) profileGallery(c *gin.Context, p *profile) { | 
					
						
							|  |  |  | 	// Get just attachments from pinned, | 
					
						
							|  |  |  | 	// making a rough guess for slice size. | 
					
						
							|  |  |  | 	pinnedGalleryItems := make([]*apimodel.WebAttachment, 0, len(p.pinnedStatuses)*4) | 
					
						
							|  |  |  | 	for _, status := range p.pinnedStatuses { | 
					
						
							|  |  |  | 		pinnedGalleryItems = append(pinnedGalleryItems, status.MediaAttachments...) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// Get just attachments from statuses, | 
					
						
							|  |  |  | 	// making a rough guess for slice size. | 
					
						
							|  |  |  | 	galleryItems := make([]*apimodel.WebAttachment, 0, len(p.statusResp.Items)*4) | 
					
						
							|  |  |  | 	for _, statusI := range p.statusResp.Items { | 
					
						
							|  |  |  | 		status := statusI.(*apimodel.WebStatus) | 
					
						
							|  |  |  | 		galleryItems = append(galleryItems, status.MediaAttachments...) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// Prepare stylesheets for profile. | 
					
						
							|  |  |  | 	stylesheets := make([]string, 0, 4) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// Profile gallery stylesheets. | 
					
						
							|  |  |  | 	stylesheets = append( | 
					
						
							|  |  |  | 		stylesheets, | 
					
						
							|  |  |  | 		[]string{ | 
					
						
							|  |  |  | 			cssFA, | 
					
						
							|  |  |  | 			cssProfileGallery, | 
					
						
							|  |  |  | 		}...) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// User-selected theme if set. | 
					
						
							|  |  |  | 	if theme := p.account.Theme; theme != "" { | 
					
						
							|  |  |  | 		stylesheets = append( | 
					
						
							|  |  |  | 			stylesheets, | 
					
						
							|  |  |  | 			themesPathPrefix+"/"+theme, | 
					
						
							|  |  |  | 		) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// Custom CSS for this | 
					
						
							|  |  |  | 	// user last in cascade. | 
					
						
							|  |  |  | 	stylesheets = append( | 
					
						
							|  |  |  | 		stylesheets, | 
					
						
							|  |  |  | 		"/@"+p.account.Username+"/custom.css", | 
					
						
							|  |  |  | 	) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	page := apiutil.WebPage{ | 
					
						
							|  |  |  | 		Template:    "profile-gallery.tmpl", | 
					
						
							|  |  |  | 		Instance:    p.instance, | 
					
						
							|  |  |  | 		OGMeta:      apiutil.OGBase(p.instance).WithAccount(p.account), | 
					
						
							| 
									
										
										
										
											2024-03-25 18:32:24 +01:00
										 |  |  | 		Stylesheets: stylesheets, | 
					
						
							| 
									
										
										
										
											2025-03-31 15:51:17 +02:00
										 |  |  | 		Javascript: []apiutil.JavascriptEntry{ | 
					
						
							|  |  |  | 			{ | 
					
						
							|  |  |  | 				Src:   jsFrontend, | 
					
						
							|  |  |  | 				Async: true, | 
					
						
							|  |  |  | 				Defer: true, | 
					
						
							|  |  |  | 			}, | 
					
						
							|  |  |  | 			{ | 
					
						
							|  |  |  | 				Bottom: true, | 
					
						
							| 
									
										
										
										
											2025-04-22 12:20:54 +02:00
										 |  |  | 				Src:    jsFrontendPrerender, | 
					
						
							| 
									
										
										
										
											2025-03-31 15:51:17 +02:00
										 |  |  | 			}, | 
					
						
							|  |  |  | 		}, | 
					
						
							| 
									
										
										
										
											2023-12-27 11:23:52 +01:00
										 |  |  | 		Extra: map[string]any{ | 
					
						
							| 
									
										
										
										
											2025-03-26 16:59:39 +01:00
										 |  |  | 			"account":            p.account, | 
					
						
							|  |  |  | 			"rssFeed":            p.rssFeed, | 
					
						
							|  |  |  | 			"robotsMeta":         p.robotsMeta, | 
					
						
							|  |  |  | 			"pinnedGalleryItems": pinnedGalleryItems, | 
					
						
							|  |  |  | 			"galleryItems":       galleryItems, | 
					
						
							|  |  |  | 			"statuses":           p.statusResp.Items, | 
					
						
							|  |  |  | 			"statuses_next":      p.statusResp.NextLink, | 
					
						
							|  |  |  | 			"pinned_statuses":    p.pinnedStatuses, | 
					
						
							|  |  |  | 			"show_back_to_top":   p.paging, | 
					
						
							| 
									
										
										
										
											2023-12-27 11:23:52 +01:00
										 |  |  | 		}, | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	apiutil.TemplateWebPage(c, page) | 
					
						
							| 
									
										
										
										
											2022-04-15 14:33:01 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-07-07 14:58:53 +02:00
										 |  |  | // returnAPAccount returns an ActivityPub representation of | 
					
						
							|  |  |  | // target account. It will do http signature authentication. | 
					
						
							|  |  |  | func (m *Module) returnAPAccount( | 
					
						
							|  |  |  | 	c *gin.Context, | 
					
						
							|  |  |  | 	targetUsername string, | 
					
						
							| 
									
										
										
										
											2025-03-26 16:59:39 +01:00
										 |  |  | 	contentType string, | 
					
						
							| 
									
										
										
										
											2023-07-07 14:58:53 +02:00
										 |  |  | ) { | 
					
						
							|  |  |  | 	user, errWithCode := m.processor.Fedi().UserGet(c.Request.Context(), targetUsername, c.Request.URL) | 
					
						
							| 
									
										
										
										
											2022-04-15 14:33:01 +02:00
										 |  |  | 	if errWithCode != nil { | 
					
						
							| 
									
										
										
										
											2023-06-13 16:47:56 +02:00
										 |  |  | 		apiutil.WebErrorHandler(c, errWithCode, m.processor.InstanceGetV1) | 
					
						
							| 
									
										
										
										
											2022-04-15 14:33:01 +02:00
										 |  |  | 		return | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2025-03-26 16:59:39 +01:00
										 |  |  | 	apiutil.JSONType(c, http.StatusOK, contentType, user) | 
					
						
							| 
									
										
										
										
											2022-04-15 14:33:01 +02:00
										 |  |  | } |