2021-08-20 10:26:56 +00:00
|
|
|
/*
|
|
|
|
GoToSocial
|
|
|
|
Copyright (C) 2021 GoToSocial Authors admin@gotosocial.org
|
|
|
|
|
|
|
|
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-06-27 14:52:18 +00:00
|
|
|
package federation
|
|
|
|
|
|
|
|
import (
|
|
|
|
"net/url"
|
|
|
|
|
2021-08-10 11:32:39 +00:00
|
|
|
"github.com/superseriousbusiness/gotosocial/internal/ap"
|
2021-06-27 14:52:18 +00:00
|
|
|
"github.com/superseriousbusiness/gotosocial/internal/gtsmodel"
|
|
|
|
)
|
|
|
|
|
2021-08-10 11:32:39 +00:00
|
|
|
func (f *federator) GetRemoteAccount(username string, remoteAccountID *url.URL, refresh bool) (*gtsmodel.Account, bool, error) {
|
|
|
|
return f.dereferencer.GetRemoteAccount(username, remoteAccountID, refresh)
|
2021-06-27 14:52:18 +00:00
|
|
|
}
|
|
|
|
|
2021-08-10 14:56:59 +00:00
|
|
|
func (f *federator) EnrichRemoteAccount(username string, account *gtsmodel.Account) (*gtsmodel.Account, error) {
|
|
|
|
return f.dereferencer.EnrichRemoteAccount(username, account)
|
|
|
|
}
|
|
|
|
|
2021-08-10 11:32:39 +00:00
|
|
|
func (f *federator) GetRemoteStatus(username string, remoteStatusID *url.URL, refresh bool) (*gtsmodel.Status, ap.Statusable, bool, error) {
|
|
|
|
return f.dereferencer.GetRemoteStatus(username, remoteStatusID, refresh)
|
2021-06-27 14:52:18 +00:00
|
|
|
}
|
|
|
|
|
2021-08-10 11:32:39 +00:00
|
|
|
func (f *federator) EnrichRemoteStatus(username string, status *gtsmodel.Status) (*gtsmodel.Status, error) {
|
|
|
|
return f.dereferencer.EnrichRemoteStatus(username, status)
|
2021-06-27 14:52:18 +00:00
|
|
|
}
|
2021-07-05 11:23:03 +00:00
|
|
|
|
2021-08-10 11:32:39 +00:00
|
|
|
func (f *federator) DereferenceRemoteThread(username string, statusIRI *url.URL) error {
|
|
|
|
return f.dereferencer.DereferenceThread(username, statusIRI)
|
2021-07-05 11:23:03 +00:00
|
|
|
}
|
|
|
|
|
2021-08-10 11:32:39 +00:00
|
|
|
func (f *federator) GetRemoteInstance(username string, remoteInstanceURI *url.URL) (*gtsmodel.Instance, error) {
|
|
|
|
return f.dereferencer.GetRemoteInstance(username, remoteInstanceURI)
|
2021-07-05 11:23:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (f *federator) DereferenceAnnounce(announce *gtsmodel.Status, requestingUsername string) error {
|
2021-08-10 11:32:39 +00:00
|
|
|
return f.dereferencer.DereferenceAnnounce(announce, requestingUsername)
|
2021-07-05 11:23:03 +00:00
|
|
|
}
|