mirror of
				https://github.com/superseriousbusiness/gotosocial.git
				synced 2025-10-31 08:22:27 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			223 lines
		
	
	
	
		
			6.4 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			223 lines
		
	
	
	
		
			6.4 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
| // 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/>.
 | |
| 
 | |
| // AccountsGETHandlerV2 swagger:operation GET /api/v2/admin/accounts adminAccountsGetV2
 | |
| //
 | |
| // View + page through known accounts according to given filters.
 | |
| //
 | |
| // Returned accounts will be ordered alphabetically (a-z) by domain + username.
 | |
| //
 | |
| // The next and previous queries can be parsed from the returned Link header.
 | |
| // Example:
 | |
| //
 | |
| // ```
 | |
| // <https://example.org/api/v2/admin/accounts?limit=80&max_id=example.org%2F%40someone>; rel="next", <https://example.org/api/v2/admin/accounts?limit=80&min_id=example.org%2F%40someone_else>; rel="prev"
 | |
| // ````
 | |
| //
 | |
| //	---
 | |
| //	tags:
 | |
| //	- admin
 | |
| //
 | |
| //	produces:
 | |
| //	- application/json
 | |
| //
 | |
| //	parameters:
 | |
| //	-
 | |
| //		name: origin
 | |
| //		in: query
 | |
| //		type: string
 | |
| //		description: Filter for `local` or `remote` accounts.
 | |
| //	-
 | |
| //		name: status
 | |
| //		in: query
 | |
| //		type: string
 | |
| //		description: Filter for `active`, `pending`, `disabled`, `silenced`, or `suspended` accounts.
 | |
| //	-
 | |
| //		name: permissions
 | |
| //		in: query
 | |
| //		type: string
 | |
| //		description: Filter for accounts with staff permissions (users that can manage reports).
 | |
| //	-
 | |
| //		name: role_ids[]
 | |
| //		in: query
 | |
| //		type: array
 | |
| //		items:
 | |
| //			type: string
 | |
| //		description: Filter for users with these roles.
 | |
| //	-
 | |
| //		name: invited_by
 | |
| //		in: query
 | |
| //		type: string
 | |
| //		description: Lookup users invited by the account with this ID.
 | |
| //	-
 | |
| //		name: username
 | |
| //		in: query
 | |
| //		type: string
 | |
| //		description: Search for the given username.
 | |
| //	-
 | |
| //		name: display_name
 | |
| //		in: query
 | |
| //		type: string
 | |
| //		description: Search for the given display name.
 | |
| //	-
 | |
| //		name: by_domain
 | |
| //		in: query
 | |
| //		type: string
 | |
| //		description: Filter by the given domain.
 | |
| //	-
 | |
| //		name: email
 | |
| //		in: query
 | |
| //		type: string
 | |
| //		description: Lookup a user with this email.
 | |
| //	-
 | |
| //		name: ip
 | |
| //		in: query
 | |
| //		type: string
 | |
| //		description: Lookup users with this IP address.
 | |
| //	-
 | |
| //		name: max_id
 | |
| //		in: query
 | |
| //		type: string
 | |
| //		description: >-
 | |
| //			max_id in the form `[domain]/@[username]`.
 | |
| //			All results returned will be later in the alphabet than `[domain]/@[username]`.
 | |
| //			For example, if max_id = `example.org/@someone` then returned entries might
 | |
| //			contain `example.org/@someone_else`, `later.example.org/@someone`, etc.
 | |
| //			Local account IDs in this form use an empty string for the `[domain]` part,
 | |
| //			for example local account with username `someone` would be `/@someone`.
 | |
| //	-
 | |
| //		name: min_id
 | |
| //		in: query
 | |
| //		type: string
 | |
| //		description: >-
 | |
| //			min_id in the form `[domain]/@[username]`.
 | |
| //			All results returned will be earlier in the alphabet than `[domain]/@[username]`.
 | |
| //			For example, if min_id = `example.org/@someone` then returned entries might
 | |
| //			contain `example.org/@earlier_account`, `earlier.example.org/@someone`, etc.
 | |
| //			Local account IDs in this form use an empty string for the `[domain]` part,
 | |
| //			for example local account with username `someone` would be `/@someone`.
 | |
| //	-
 | |
| //		name: limit
 | |
| //		in: query
 | |
| //		type: integer
 | |
| //		description: Maximum number of results to return.
 | |
| //		default: 50
 | |
| //		maximum: 200
 | |
| //		minimum: 1
 | |
| //
 | |
| //	security:
 | |
| //	- OAuth2 Bearer:
 | |
| //		- admin:read:accounts
 | |
| //
 | |
| //	responses:
 | |
| //		'200':
 | |
| //			headers:
 | |
| //				Link:
 | |
| //					type: string
 | |
| //					description: Links to the next and previous queries.
 | |
| //			schema:
 | |
| //				type: array
 | |
| //				items:
 | |
| //					"$ref": "#/definitions/adminAccountInfo"
 | |
| //		'400':
 | |
| //			description: bad request
 | |
| //		'401':
 | |
| //			description: unauthorized
 | |
| //		'403':
 | |
| //			description: forbidden
 | |
| //		'404':
 | |
| //			description: not found
 | |
| //		'406':
 | |
| //			description: not acceptable
 | |
| //		'500':
 | |
| //			description: internal server error
 | |
| package admin
 | |
| 
 | |
| import (
 | |
| 	"fmt"
 | |
| 	"net/http"
 | |
| 
 | |
| 	apimodel "code.superseriousbusiness.org/gotosocial/internal/api/model"
 | |
| 	apiutil "code.superseriousbusiness.org/gotosocial/internal/api/util"
 | |
| 	"code.superseriousbusiness.org/gotosocial/internal/gtserror"
 | |
| 	"code.superseriousbusiness.org/gotosocial/internal/paging"
 | |
| 	"github.com/gin-gonic/gin"
 | |
| )
 | |
| 
 | |
| func (m *Module) AccountsGETV2Handler(c *gin.Context) {
 | |
| 	authed, errWithCode := apiutil.TokenAuth(c,
 | |
| 		true, true, true, true,
 | |
| 		apiutil.ScopeAdminReadAccounts,
 | |
| 	)
 | |
| 	if errWithCode != nil {
 | |
| 		apiutil.ErrorHandler(c, errWithCode, m.processor.InstanceGetV1)
 | |
| 		return
 | |
| 	}
 | |
| 
 | |
| 	if !*authed.User.Admin {
 | |
| 		err := fmt.Errorf("user %s not an admin", authed.User.ID)
 | |
| 		apiutil.ErrorHandler(c, gtserror.NewErrorForbidden(err, err.Error()), m.processor.InstanceGetV1)
 | |
| 		return
 | |
| 	}
 | |
| 
 | |
| 	if authed.Account.IsMoving() {
 | |
| 		apiutil.ForbiddenAfterMove(c)
 | |
| 		return
 | |
| 	}
 | |
| 
 | |
| 	if _, err := apiutil.NegotiateAccept(c, apiutil.JSONAcceptHeaders...); err != nil {
 | |
| 		apiutil.ErrorHandler(c, gtserror.NewErrorNotAcceptable(err, err.Error()), m.processor.InstanceGetV1)
 | |
| 		return
 | |
| 	}
 | |
| 
 | |
| 	page, errWithCode := paging.ParseIDPage(c, 1, 200, 50)
 | |
| 	if errWithCode != nil {
 | |
| 		apiutil.ErrorHandler(c, errWithCode, m.processor.InstanceGetV1)
 | |
| 		return
 | |
| 	}
 | |
| 
 | |
| 	// Parse out all optional params from the query.
 | |
| 	params := &apimodel.AdminGetAccountsRequest{
 | |
| 		Origin:      c.Query(apiutil.AdminOriginKey),
 | |
| 		Status:      c.Query(apiutil.AdminStatusKey),
 | |
| 		Permissions: c.Query(apiutil.AdminPermissionsKey),
 | |
| 		RoleIDs:     c.QueryArray(apiutil.AdminRoleIDsKey),
 | |
| 		InvitedBy:   c.Query(apiutil.AdminInvitedByKey),
 | |
| 		Username:    c.Query(apiutil.UsernameKey),
 | |
| 		DisplayName: c.Query(apiutil.AdminDisplayNameKey),
 | |
| 		ByDomain:    c.Query(apiutil.AdminByDomainKey),
 | |
| 		Email:       c.Query(apiutil.AdminEmailKey),
 | |
| 		IP:          c.Query(apiutil.AdminIPKey),
 | |
| 		APIVersion:  2,
 | |
| 	}
 | |
| 
 | |
| 	resp, errWithCode := m.processor.Admin().AccountsGet(
 | |
| 		c.Request.Context(),
 | |
| 		params,
 | |
| 		page,
 | |
| 	)
 | |
| 	if errWithCode != nil {
 | |
| 		apiutil.ErrorHandler(c, errWithCode, m.processor.InstanceGetV1)
 | |
| 		return
 | |
| 	}
 | |
| 
 | |
| 	if resp.LinkHeader != "" {
 | |
| 		c.Header("Link", resp.LinkHeader)
 | |
| 	}
 | |
| 
 | |
| 	apiutil.JSON(c, http.StatusOK, resp.Items)
 | |
| }
 |