2021-05-08 13:25:55 +01:00
|
|
|
/*
|
|
|
|
GoToSocial
|
2021-12-20 17:42:19 +00:00
|
|
|
Copyright (C) 2021-2022 GoToSocial Authors admin@gotosocial.org
|
2021-05-08 13:25:55 +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/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
package user
|
|
|
|
|
|
|
|
import (
|
|
|
|
"net/http"
|
|
|
|
|
|
|
|
"github.com/superseriousbusiness/gotosocial/internal/api"
|
2021-05-30 12:12:00 +01:00
|
|
|
"github.com/superseriousbusiness/gotosocial/internal/processing"
|
2021-05-08 13:25:55 +01:00
|
|
|
"github.com/superseriousbusiness/gotosocial/internal/router"
|
2021-12-20 14:19:53 +00:00
|
|
|
"github.com/superseriousbusiness/gotosocial/internal/uris"
|
2021-05-08 13:25:55 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
const (
|
|
|
|
// UsernameKey is for account usernames.
|
|
|
|
UsernameKey = "username"
|
2021-05-21 14:48:26 +01:00
|
|
|
// StatusIDKey is for status IDs
|
|
|
|
StatusIDKey = "status"
|
2021-08-10 12:32:39 +01:00
|
|
|
// OnlyOtherAccountsKey is for filtering status responses.
|
|
|
|
OnlyOtherAccountsKey = "only_other_accounts"
|
|
|
|
// MinIDKey is for filtering status responses.
|
|
|
|
MinIDKey = "min_id"
|
2021-10-24 10:57:39 +01:00
|
|
|
// MaxIDKey is for filtering status responses.
|
|
|
|
MaxIDKey = "max_id"
|
2021-08-10 12:32:39 +01:00
|
|
|
// PageKey is for filtering status responses.
|
|
|
|
PageKey = "page"
|
|
|
|
|
2021-05-08 13:25:55 +01:00
|
|
|
// UsersBasePath is the base path for serving information about Users eg https://example.org/users
|
2021-12-20 14:19:53 +00:00
|
|
|
UsersBasePath = "/" + uris.UsersPath
|
2021-05-08 13:25:55 +01:00
|
|
|
// UsersBasePathWithUsername is just the users base path with the Username key in it.
|
|
|
|
// Use this anywhere you need to know the username of the user being queried.
|
|
|
|
// Eg https://example.org/users/:username
|
|
|
|
UsersBasePathWithUsername = UsersBasePath + "/:" + UsernameKey
|
2021-06-26 15:21:40 +01:00
|
|
|
// UsersPublicKeyPath is a path to a user's public key, for serving bare minimum AP representations.
|
2021-12-20 14:19:53 +00:00
|
|
|
UsersPublicKeyPath = UsersBasePathWithUsername + "/" + uris.PublicKeyPath
|
2021-05-15 10:58:11 +01:00
|
|
|
// UsersInboxPath is for serving POST requests to a user's inbox with the given username key.
|
2021-12-20 14:19:53 +00:00
|
|
|
UsersInboxPath = UsersBasePathWithUsername + "/" + uris.InboxPath
|
2021-10-24 10:57:39 +01:00
|
|
|
// UsersOutboxPath is for serving GET requests to a user's outbox with the given username key.
|
2021-12-20 14:19:53 +00:00
|
|
|
UsersOutboxPath = UsersBasePathWithUsername + "/" + uris.OutboxPath
|
2021-05-21 14:48:26 +01:00
|
|
|
// UsersFollowersPath is for serving GET request's to a user's followers list, with the given username key.
|
2021-12-20 14:19:53 +00:00
|
|
|
UsersFollowersPath = UsersBasePathWithUsername + "/" + uris.FollowersPath
|
2021-05-23 17:07:04 +01:00
|
|
|
// UsersFollowingPath is for serving GET request's to a user's following list, with the given username key.
|
2021-12-20 14:19:53 +00:00
|
|
|
UsersFollowingPath = UsersBasePathWithUsername + "/" + uris.FollowingPath
|
2021-05-21 14:48:26 +01:00
|
|
|
// UsersStatusPath is for serving GET requests to a particular status by a user, with the given username key and status ID
|
2021-12-20 14:19:53 +00:00
|
|
|
UsersStatusPath = UsersBasePathWithUsername + "/" + uris.StatusesPath + "/:" + StatusIDKey
|
2021-08-10 12:32:39 +01:00
|
|
|
// UsersStatusRepliesPath is for serving the replies collection of a status.
|
|
|
|
UsersStatusRepliesPath = UsersStatusPath + "/replies"
|
2021-05-08 13:25:55 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
// Module implements the FederationAPIModule interface
|
|
|
|
type Module struct {
|
2021-05-30 12:12:00 +01:00
|
|
|
processor processing.Processor
|
2021-05-08 13:25:55 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// New returns a new auth module
|
2021-12-07 12:31:39 +00:00
|
|
|
func New(processor processing.Processor) api.FederationModule {
|
2021-05-08 13:25:55 +01:00
|
|
|
return &Module{
|
|
|
|
processor: processor,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Route satisfies the RESTAPIModule interface
|
|
|
|
func (m *Module) Route(s router.Router) error {
|
|
|
|
s.AttachHandler(http.MethodGet, UsersBasePathWithUsername, m.UsersGETHandler)
|
2021-05-15 10:58:11 +01:00
|
|
|
s.AttachHandler(http.MethodPost, UsersInboxPath, m.InboxPOSTHandler)
|
2021-05-21 14:48:26 +01:00
|
|
|
s.AttachHandler(http.MethodGet, UsersFollowersPath, m.FollowersGETHandler)
|
2021-05-23 17:07:04 +01:00
|
|
|
s.AttachHandler(http.MethodGet, UsersFollowingPath, m.FollowingGETHandler)
|
2021-05-21 14:48:26 +01:00
|
|
|
s.AttachHandler(http.MethodGet, UsersStatusPath, m.StatusGETHandler)
|
2021-06-26 15:21:40 +01:00
|
|
|
s.AttachHandler(http.MethodGet, UsersPublicKeyPath, m.PublicKeyGETHandler)
|
2021-08-10 12:32:39 +01:00
|
|
|
s.AttachHandler(http.MethodGet, UsersStatusRepliesPath, m.StatusRepliesGETHandler)
|
2021-10-24 10:57:39 +01:00
|
|
|
s.AttachHandler(http.MethodGet, UsersOutboxPath, m.OutboxGETHandler)
|
2021-05-08 13:25:55 +01:00
|
|
|
return nil
|
|
|
|
}
|