2021-05-27 14:06:24 +00:00
|
|
|
package federatingdb
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
"fmt"
|
|
|
|
"net/url"
|
|
|
|
|
|
|
|
"github.com/go-fed/activity/streams"
|
|
|
|
"github.com/go-fed/activity/streams/vocab"
|
|
|
|
"github.com/sirupsen/logrus"
|
|
|
|
"github.com/superseriousbusiness/gotosocial/internal/gtsmodel"
|
2021-05-29 17:36:54 +00:00
|
|
|
"github.com/superseriousbusiness/gotosocial/internal/util"
|
2021-05-27 14:06:24 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
// Following obtains the Following Collection for an actor with the
|
|
|
|
// given id.
|
|
|
|
//
|
|
|
|
// If modified, the library will then call Update.
|
|
|
|
//
|
|
|
|
// The library makes this call only after acquiring a lock first.
|
|
|
|
func (f *federatingDB) Following(c context.Context, actorIRI *url.URL) (following vocab.ActivityStreamsCollection, err error) {
|
|
|
|
l := f.log.WithFields(
|
|
|
|
logrus.Fields{
|
|
|
|
"func": "Following",
|
|
|
|
"actorIRI": actorIRI.String(),
|
|
|
|
},
|
|
|
|
)
|
|
|
|
l.Debugf("entering FOLLOWING function with actorIRI %s", actorIRI.String())
|
|
|
|
|
2021-08-20 10:26:56 +00:00
|
|
|
var acct *gtsmodel.Account
|
2021-05-29 17:36:54 +00:00
|
|
|
if util.IsUserPath(actorIRI) {
|
2021-08-20 10:26:56 +00:00
|
|
|
username, err := util.ParseUserPath(actorIRI)
|
|
|
|
if err != nil {
|
|
|
|
return nil, fmt.Errorf("FOLLOWING: error parsing user path: %s", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
a, err := f.db.GetLocalAccountByUsername(username)
|
|
|
|
if err != nil {
|
2021-07-27 08:45:22 +00:00
|
|
|
return nil, fmt.Errorf("FOLLOWING: db error getting account with uri %s: %s", actorIRI.String(), err)
|
2021-05-29 17:36:54 +00:00
|
|
|
}
|
2021-08-20 10:26:56 +00:00
|
|
|
|
|
|
|
acct = a
|
2021-05-29 17:36:54 +00:00
|
|
|
} else if util.IsFollowingPath(actorIRI) {
|
2021-08-20 10:26:56 +00:00
|
|
|
username, err := util.ParseFollowingPath(actorIRI)
|
|
|
|
if err != nil {
|
|
|
|
return nil, fmt.Errorf("FOLLOWING: error parsing following path: %s", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
a, err := f.db.GetLocalAccountByUsername(username)
|
|
|
|
if err != nil {
|
2021-07-27 08:45:22 +00:00
|
|
|
return nil, fmt.Errorf("FOLLOWING: db error getting account with following uri %s: %s", actorIRI.String(), err)
|
2021-05-29 17:36:54 +00:00
|
|
|
}
|
2021-08-20 10:26:56 +00:00
|
|
|
|
|
|
|
acct = a
|
2021-05-29 17:36:54 +00:00
|
|
|
} else {
|
2021-07-27 08:45:22 +00:00
|
|
|
return nil, fmt.Errorf("FOLLOWING: could not parse actor IRI %s as users or following path", actorIRI.String())
|
2021-05-27 14:06:24 +00:00
|
|
|
}
|
|
|
|
|
2021-08-20 10:26:56 +00:00
|
|
|
acctFollowing, err := f.db.GetAccountFollows(acct.ID)
|
|
|
|
if err != nil {
|
2021-07-27 08:45:22 +00:00
|
|
|
return nil, fmt.Errorf("FOLLOWING: db error getting following for account id %s: %s", acct.ID, err)
|
2021-05-27 14:06:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
following = streams.NewActivityStreamsCollection()
|
|
|
|
items := streams.NewActivityStreamsItemsProperty()
|
|
|
|
for _, follow := range acctFollowing {
|
|
|
|
gtsFollowing := >smodel.Account{}
|
|
|
|
if err := f.db.GetByID(follow.AccountID, gtsFollowing); err != nil {
|
2021-07-27 08:45:22 +00:00
|
|
|
return nil, fmt.Errorf("FOLLOWING: db error getting account id %s: %s", follow.AccountID, err)
|
2021-05-27 14:06:24 +00:00
|
|
|
}
|
|
|
|
uri, err := url.Parse(gtsFollowing.URI)
|
|
|
|
if err != nil {
|
2021-07-27 08:45:22 +00:00
|
|
|
return nil, fmt.Errorf("FOLLOWING: error parsing %s as url: %s", gtsFollowing.URI, err)
|
2021-05-27 14:06:24 +00:00
|
|
|
}
|
|
|
|
items.AppendIRI(uri)
|
|
|
|
}
|
|
|
|
following.SetActivityStreamsItems(items)
|
|
|
|
return
|
|
|
|
}
|