2021-08-25 15:34:33 +02:00
|
|
|
/*
|
|
|
|
GoToSocial
|
2023-01-05 12:43:00 +01:00
|
|
|
Copyright (C) 2021-2023 GoToSocial Authors admin@gotosocial.org
|
2021-08-25 15:34:33 +02: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/>.
|
|
|
|
*/
|
|
|
|
|
2021-06-13 18:42:28 +02:00
|
|
|
package status
|
|
|
|
|
|
|
|
import (
|
2022-05-15 11:16:43 +02:00
|
|
|
"github.com/superseriousbusiness/gotosocial/internal/concurrency"
|
2021-06-13 18:42:28 +02:00
|
|
|
"github.com/superseriousbusiness/gotosocial/internal/db"
|
|
|
|
"github.com/superseriousbusiness/gotosocial/internal/gtsmodel"
|
2021-08-31 15:59:12 +02:00
|
|
|
"github.com/superseriousbusiness/gotosocial/internal/messages"
|
2021-07-26 20:25:54 +02:00
|
|
|
"github.com/superseriousbusiness/gotosocial/internal/text"
|
2021-06-13 18:42:28 +02:00
|
|
|
"github.com/superseriousbusiness/gotosocial/internal/typeutils"
|
2021-06-17 18:02:33 +02:00
|
|
|
"github.com/superseriousbusiness/gotosocial/internal/visibility"
|
2021-06-13 18:42:28 +02:00
|
|
|
)
|
|
|
|
|
2023-02-22 16:05:26 +01:00
|
|
|
type Processor struct {
|
2022-04-28 14:23:11 +02:00
|
|
|
tc typeutils.TypeConverter
|
|
|
|
db db.DB
|
|
|
|
filter visibility.Filter
|
|
|
|
formatter text.Formatter
|
2022-05-15 11:16:43 +02:00
|
|
|
clientWorker *concurrency.WorkerPool[messages.FromClientAPI]
|
2022-04-28 14:23:11 +02:00
|
|
|
parseMention gtsmodel.ParseMentionFunc
|
2021-06-13 18:42:28 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// New returns a new status processor.
|
2022-05-15 11:16:43 +02:00
|
|
|
func New(db db.DB, tc typeutils.TypeConverter, clientWorker *concurrency.WorkerPool[messages.FromClientAPI], parseMention gtsmodel.ParseMentionFunc) Processor {
|
2023-02-22 16:05:26 +01:00
|
|
|
return Processor{
|
2022-04-28 14:23:11 +02:00
|
|
|
tc: tc,
|
|
|
|
db: db,
|
|
|
|
filter: visibility.NewFilter(db),
|
|
|
|
formatter: text.NewFormatter(db),
|
|
|
|
clientWorker: clientWorker,
|
|
|
|
parseMention: parseMention,
|
2021-06-13 18:42:28 +02:00
|
|
|
}
|
|
|
|
}
|