2021-05-27 15:06:24 +01:00
|
|
|
/*
|
|
|
|
GoToSocial
|
2023-01-05 11:43:00 +00:00
|
|
|
Copyright (C) 2021-2023 GoToSocial Authors admin@gotosocial.org
|
2021-05-27 15:06:24 +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 federatingdb
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
2023-01-27 13:48:11 +00:00
|
|
|
"fmt"
|
2021-05-27 15:06:24 +01:00
|
|
|
"net/url"
|
|
|
|
|
2022-07-19 09:47:55 +01:00
|
|
|
"codeberg.org/gruf/go-kv"
|
2021-11-13 16:29:43 +00:00
|
|
|
"github.com/superseriousbusiness/activity/streams/vocab"
|
2022-07-19 09:47:55 +01:00
|
|
|
"github.com/superseriousbusiness/gotosocial/internal/log"
|
2021-12-20 14:19:53 +00:00
|
|
|
"github.com/superseriousbusiness/gotosocial/internal/uris"
|
2021-05-27 15:06:24 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
// Get returns the database entry for the specified id.
|
|
|
|
//
|
|
|
|
// The library makes this call only after acquiring a lock first.
|
2021-08-25 14:34:33 +01:00
|
|
|
func (f *federatingDB) Get(ctx context.Context, id *url.URL) (value vocab.Type, err error) {
|
2023-02-17 11:02:29 +00:00
|
|
|
l := log.WithContext(ctx).
|
|
|
|
WithFields(kv.Fields{{"id", id}}...)
|
2021-10-04 14:24:19 +01:00
|
|
|
l.Debug("entering Get")
|
2021-05-27 15:06:24 +01:00
|
|
|
|
2023-01-27 13:48:11 +00:00
|
|
|
switch {
|
|
|
|
case uris.IsUserPath(id):
|
2023-03-01 18:26:53 +00:00
|
|
|
acct, err := f.state.DB.GetAccountByURI(ctx, id.String())
|
2021-08-20 11:26:56 +01:00
|
|
|
if err != nil {
|
2021-05-27 15:06:24 +01:00
|
|
|
return nil, err
|
|
|
|
}
|
2021-08-25 14:34:33 +01:00
|
|
|
return f.typeConverter.AccountToAS(ctx, acct)
|
2023-01-27 13:48:11 +00:00
|
|
|
case uris.IsStatusesPath(id):
|
2023-03-01 18:26:53 +00:00
|
|
|
status, err := f.state.DB.GetStatusByURI(ctx, id.String())
|
2021-05-27 15:06:24 +01:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2021-10-04 14:24:19 +01:00
|
|
|
return f.typeConverter.StatusToAS(ctx, status)
|
2023-01-27 13:48:11 +00:00
|
|
|
case uris.IsFollowersPath(id):
|
2021-10-04 14:24:19 +01:00
|
|
|
return f.Followers(ctx, id)
|
2023-01-27 13:48:11 +00:00
|
|
|
case uris.IsFollowingPath(id):
|
2021-10-04 14:24:19 +01:00
|
|
|
return f.Following(ctx, id)
|
2023-01-27 13:48:11 +00:00
|
|
|
default:
|
|
|
|
return nil, fmt.Errorf("federatingDB: could not Get %s", id.String())
|
2021-05-27 15:06:24 +01:00
|
|
|
}
|
|
|
|
}
|