mirror of
https://github.com/superseriousbusiness/gotosocial.git
synced 2024-11-01 06:50:00 +00:00
6c9d8e78eb
* revamp http client to not limit requests, instead use sender worker Signed-off-by: kim <grufwub@gmail.com> * remove separate sender worker pool, spawn 2*GOMAXPROCS batch senders each time, no need for transport cache sweeping Signed-off-by: kim <grufwub@gmail.com> * improve batch senders to keep popping recipients until remote URL found Signed-off-by: kim <grufwub@gmail.com> * fix recipient looping issue Signed-off-by: kim <grufwub@gmail.com> * move request id ctx key to gtscontext, finish filling out more code comments, add basic support for not logging client IP Signed-off-by: kim <grufwub@gmail.com> * first draft of status refetching logic Signed-off-by: kim <grufwub@gmail.com> * fix testrig to use new federation alloc func signature Signed-off-by: kim <grufwub@gmail.com> * fix log format directive Signed-off-by: kim <grufwub@gmail.com> * add status fetched_at migration Signed-off-by: kim <grufwub@gmail.com> * remove unused / unchecked for error types Signed-off-by: kim <grufwub@gmail.com> * add back the used type... Signed-off-by: kim <grufwub@gmail.com> * add separate internal getStatus() function for derefThread() that doesn't recurse Signed-off-by: kim <grufwub@gmail.com> * improved mention and media attachment error handling Signed-off-by: kim <grufwub@gmail.com> * fix log and error format directives Signed-off-by: kim <grufwub@gmail.com> * update account deref to match status deref changes Signed-off-by: kim <grufwub@gmail.com> * very small code formatting change to make things clearer Signed-off-by: kim <grufwub@gmail.com> * add more code comments Signed-off-by: kim <grufwub@gmail.com> * improved code commenting Signed-off-by: kim <grufwub@gmail.com> * only check for required further derefs if needed Signed-off-by: kim <grufwub@gmail.com> * improved cache invalidation Signed-off-by: kim <grufwub@gmail.com> * tweak cache restarting to use a (very small) backoff Signed-off-by: kim <grufwub@gmail.com> * small readability changes and fixes Signed-off-by: kim <grufwub@gmail.com> * fix account sync issues Signed-off-by: kim <grufwub@gmail.com> * fix merge conflicts + update account enrichment to accept already-passed accountable Signed-off-by: kim <grufwub@gmail.com> * remove secondary function declaration Signed-off-by: kim <grufwub@gmail.com> * normalise dereferencer get status / account behaviour, fix remaining tests Signed-off-by: kim <grufwub@gmail.com> * fix remaining rebase conflicts, finish commenting code Signed-off-by: kim <grufwub@gmail.com> * appease the linter Signed-off-by: kim <grufwub@gmail.com> * add source file header Signed-off-by: kim <grufwub@gmail.com> * update to use TIMESTAMPTZ column type instead of just TIMESTAMP Signed-off-by: kim <grufwub@gmail.com> * don't pass in 'updated_at' to UpdateEmoji() Signed-off-by: kim <grufwub@gmail.com> * use new ap.Resolve{Account,Status}able() functions Signed-off-by: kim <grufwub@gmail.com> * remove the somewhat confusing rescoping of the same variable names Signed-off-by: kim <grufwub@gmail.com> * update migration file name, improved database delete error returns Signed-off-by: kim <grufwub@gmail.com> * formatting Signed-off-by: kim <grufwub@gmail.com> * improved multi-delete database functions to minimise DB calls Signed-off-by: kim <grufwub@gmail.com> * remove unused type Signed-off-by: kim <grufwub@gmail.com> * fix delete statements Signed-off-by: kim <grufwub@gmail.com> --------- Signed-off-by: kim <grufwub@gmail.com>
190 lines
6.5 KiB
Go
190 lines
6.5 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/>.
|
|
|
|
package dereferencing
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
"io"
|
|
"net/url"
|
|
|
|
"github.com/superseriousbusiness/gotosocial/internal/db"
|
|
"github.com/superseriousbusiness/gotosocial/internal/gtsmodel"
|
|
"github.com/superseriousbusiness/gotosocial/internal/id"
|
|
"github.com/superseriousbusiness/gotosocial/internal/log"
|
|
"github.com/superseriousbusiness/gotosocial/internal/media"
|
|
)
|
|
|
|
func (d *deref) GetRemoteEmoji(ctx context.Context, requestingUsername string, remoteURL string, shortcode string, domain string, id string, emojiURI string, ai *media.AdditionalEmojiInfo, refresh bool) (*media.ProcessingEmoji, error) {
|
|
var (
|
|
shortcodeDomain = shortcode + "@" + domain
|
|
processingEmoji *media.ProcessingEmoji
|
|
)
|
|
|
|
// Acquire lock for derefs map.
|
|
unlock := d.derefEmojisMu.Lock()
|
|
defer unlock()
|
|
|
|
// first check if we're already processing this emoji
|
|
if alreadyProcessing, ok := d.derefEmojis[shortcodeDomain]; ok {
|
|
// we're already on it, no worries
|
|
processingEmoji = alreadyProcessing
|
|
} else {
|
|
// not processing it yet, let's start
|
|
t, err := d.transportController.NewTransportForUsername(ctx, requestingUsername)
|
|
if err != nil {
|
|
return nil, fmt.Errorf("GetRemoteEmoji: error creating transport to fetch emoji %s: %s", shortcodeDomain, err)
|
|
}
|
|
|
|
derefURI, err := url.Parse(remoteURL)
|
|
if err != nil {
|
|
return nil, fmt.Errorf("GetRemoteEmoji: error parsing url for emoji %s: %s", shortcodeDomain, err)
|
|
}
|
|
|
|
dataFunc := func(innerCtx context.Context) (io.ReadCloser, int64, error) {
|
|
return t.DereferenceMedia(innerCtx, derefURI)
|
|
}
|
|
|
|
newProcessing, err := d.mediaManager.PreProcessEmoji(ctx, dataFunc, nil, shortcode, id, emojiURI, ai, refresh)
|
|
if err != nil {
|
|
return nil, fmt.Errorf("GetRemoteEmoji: error processing emoji %s: %s", shortcodeDomain, err)
|
|
}
|
|
|
|
// store it in our map to indicate it's in process
|
|
d.derefEmojis[shortcodeDomain] = newProcessing
|
|
processingEmoji = newProcessing
|
|
}
|
|
|
|
// Unlock map.
|
|
unlock()
|
|
|
|
defer func() {
|
|
// On exit safely remove emoji from map.
|
|
unlock := d.derefEmojisMu.Lock()
|
|
delete(d.derefEmojis, shortcodeDomain)
|
|
unlock()
|
|
}()
|
|
|
|
// Start emoji attachment loading (blocking call).
|
|
if _, err := processingEmoji.LoadEmoji(ctx); err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
return processingEmoji, nil
|
|
}
|
|
|
|
func (d *deref) populateEmojis(ctx context.Context, rawEmojis []*gtsmodel.Emoji, requestingUsername string) ([]*gtsmodel.Emoji, error) {
|
|
// At this point we should know:
|
|
// * the AP uri of the emoji
|
|
// * the domain of the emoji
|
|
// * the shortcode of the emoji
|
|
// * the remote URL of the image
|
|
// This should be enough to dereference the emoji
|
|
|
|
gotEmojis := make([]*gtsmodel.Emoji, 0, len(rawEmojis))
|
|
|
|
for _, e := range rawEmojis {
|
|
var gotEmoji *gtsmodel.Emoji
|
|
var err error
|
|
shortcodeDomain := e.Shortcode + "@" + e.Domain
|
|
|
|
// check if we already know this emoji
|
|
if e.ID != "" {
|
|
// we had an ID for this emoji already, which means
|
|
// it should be fleshed out already and we won't
|
|
// have to get it from the database again
|
|
gotEmoji = e
|
|
} else if gotEmoji, err = d.state.DB.GetEmojiByShortcodeDomain(ctx, e.Shortcode, e.Domain); err != nil && err != db.ErrNoEntries {
|
|
log.Errorf(ctx, "error checking database for emoji %s: %s", shortcodeDomain, err)
|
|
continue
|
|
}
|
|
|
|
var refresh bool
|
|
|
|
if gotEmoji != nil {
|
|
// we had the emoji already, but refresh it if necessary
|
|
if e.UpdatedAt.Unix() > gotEmoji.ImageUpdatedAt.Unix() {
|
|
log.Tracef(ctx, "emoji %s was updated since we last saw it, will refresh", shortcodeDomain)
|
|
refresh = true
|
|
}
|
|
|
|
if !refresh && (e.URI != gotEmoji.URI) {
|
|
log.Tracef(ctx, "emoji %s changed URI since we last saw it, will refresh", shortcodeDomain)
|
|
refresh = true
|
|
}
|
|
|
|
if !refresh && (e.ImageRemoteURL != gotEmoji.ImageRemoteURL) {
|
|
log.Tracef(ctx, "emoji %s changed image URL since we last saw it, will refresh", shortcodeDomain)
|
|
refresh = true
|
|
}
|
|
|
|
if !refresh {
|
|
log.Tracef(ctx, "emoji %s is up to date, will not refresh", shortcodeDomain)
|
|
} else {
|
|
log.Tracef(ctx, "refreshing emoji %s", shortcodeDomain)
|
|
emojiID := gotEmoji.ID // use existing ID
|
|
processingEmoji, err := d.GetRemoteEmoji(ctx, requestingUsername, e.ImageRemoteURL, e.Shortcode, e.Domain, emojiID, e.URI, &media.AdditionalEmojiInfo{
|
|
Domain: &e.Domain,
|
|
ImageRemoteURL: &e.ImageRemoteURL,
|
|
ImageStaticRemoteURL: &e.ImageStaticRemoteURL,
|
|
Disabled: gotEmoji.Disabled,
|
|
VisibleInPicker: gotEmoji.VisibleInPicker,
|
|
}, refresh)
|
|
if err != nil {
|
|
log.Errorf(ctx, "couldn't refresh remote emoji %s: %s", shortcodeDomain, err)
|
|
continue
|
|
}
|
|
|
|
if gotEmoji, err = processingEmoji.LoadEmoji(ctx); err != nil {
|
|
log.Errorf(ctx, "couldn't load refreshed remote emoji %s: %s", shortcodeDomain, err)
|
|
continue
|
|
}
|
|
}
|
|
} else {
|
|
// it's new! go get it!
|
|
newEmojiID, err := id.NewRandomULID()
|
|
if err != nil {
|
|
log.Errorf(ctx, "error generating id for remote emoji %s: %s", shortcodeDomain, err)
|
|
continue
|
|
}
|
|
|
|
processingEmoji, err := d.GetRemoteEmoji(ctx, requestingUsername, e.ImageRemoteURL, e.Shortcode, e.Domain, newEmojiID, e.URI, &media.AdditionalEmojiInfo{
|
|
Domain: &e.Domain,
|
|
ImageRemoteURL: &e.ImageRemoteURL,
|
|
ImageStaticRemoteURL: &e.ImageStaticRemoteURL,
|
|
Disabled: e.Disabled,
|
|
VisibleInPicker: e.VisibleInPicker,
|
|
}, refresh)
|
|
if err != nil {
|
|
log.Errorf(ctx, "couldn't get remote emoji %s: %s", shortcodeDomain, err)
|
|
continue
|
|
}
|
|
|
|
if gotEmoji, err = processingEmoji.LoadEmoji(ctx); err != nil {
|
|
log.Errorf(ctx, "couldn't load remote emoji %s: %s", shortcodeDomain, err)
|
|
continue
|
|
}
|
|
}
|
|
|
|
// if we get here, we either had the emoji already or we successfully fetched it
|
|
gotEmojis = append(gotEmojis, gotEmoji)
|
|
}
|
|
|
|
return gotEmojis, nil
|
|
}
|