adds index to activity_actors table
This commit is contained in:
46
db/migrations/1757759342_updated_activitypub_actors.go
Normal file
46
db/migrations/1757759342_updated_activitypub_actors.go
Normal file
@@ -0,0 +1,46 @@
|
|||||||
|
package migrations
|
||||||
|
|
||||||
|
import (
|
||||||
|
"encoding/json"
|
||||||
|
|
||||||
|
"github.com/pocketbase/pocketbase/core"
|
||||||
|
m "github.com/pocketbase/pocketbase/migrations"
|
||||||
|
)
|
||||||
|
|
||||||
|
func init() {
|
||||||
|
m.Register(func(app core.App) error {
|
||||||
|
collection, err := app.FindCollectionByNameOrId("pbc_1295301207")
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
|
||||||
|
// update collection data
|
||||||
|
if err := json.Unmarshal([]byte(`{
|
||||||
|
"indexes": [
|
||||||
|
"CREATE UNIQUE INDEX `+"`"+`idx_rpT7QJwWTm`+"`"+` ON `+"`"+`activitypub_actors`+"`"+` (`+"`"+`iri`+"`"+`)",
|
||||||
|
"CREATE INDEX idx_actors_username_domain\nON activitypub_actors(preferred_username, domain);",
|
||||||
|
"CREATE INDEX idx_activitypub_actors_user ON activitypub_actors(user);"
|
||||||
|
]
|
||||||
|
}`), &collection); err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
|
||||||
|
return app.Save(collection)
|
||||||
|
}, func(app core.App) error {
|
||||||
|
collection, err := app.FindCollectionByNameOrId("pbc_1295301207")
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
|
||||||
|
// update collection data
|
||||||
|
if err := json.Unmarshal([]byte(`{
|
||||||
|
"indexes": [
|
||||||
|
"CREATE UNIQUE INDEX `+"`"+`idx_rpT7QJwWTm`+"`"+` ON `+"`"+`activitypub_actors`+"`"+` (`+"`"+`iri`+"`"+`)"
|
||||||
|
]
|
||||||
|
}`), &collection); err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
|
||||||
|
return app.Save(collection)
|
||||||
|
})
|
||||||
|
}
|
||||||
@@ -83,7 +83,7 @@ const auth: Handle = async ({ event, resolve }) => {
|
|||||||
if (pb.authStore.record) {
|
if (pb.authStore.record) {
|
||||||
meiliApiKey = pb.authStore.record.token
|
meiliApiKey = pb.authStore.record.token
|
||||||
settings = await pb.collection('settings').getFirstListItem<Settings>(`user="${pb.authStore.record.id}"`, { requestKey: null })
|
settings = await pb.collection('settings').getFirstListItem<Settings>(`user="${pb.authStore.record.id}"`, { requestKey: null })
|
||||||
actor = await pb.collection("activitypub_actors").getFirstListItem(`user='${pb.authStore.record.id}'`)
|
actor = await pb.collection("activitypub_actors").getFirstListItem(`isLocal=1&&user='${pb.authStore.record.id}'`)
|
||||||
} else {
|
} else {
|
||||||
if (!publicMeilisearchKey) {
|
if (!publicMeilisearchKey) {
|
||||||
const response = await pb.send("/public/search/token", { method: "GET", fetch: event.fetch });
|
const response = await pb.send("/public/search/token", { method: "GET", fetch: event.fetch });
|
||||||
|
|||||||
@@ -20,7 +20,7 @@ export async function GET(event: RequestEvent) {
|
|||||||
|
|
||||||
const [username, domain] = splitUsername(fullUsername, env.ORIGIN)
|
const [username, domain] = splitUsername(fullUsername, env.ORIGIN)
|
||||||
|
|
||||||
const actor: Actor = await event.locals.pb.collection("activitypub_actors").getFirstListItem(`preferred_username:lower='${username?.toLowerCase()}'&&isLocal=true`)
|
const actor: Actor = await event.locals.pb.collection("activitypub_actors").getFirstListItem(`preferred_username:lower='${username?.toLowerCase()}'&&isLocal=1`)
|
||||||
const user: UserAnonymous = await event.locals.pb.collection("users_anonymous").getOne(actor.user!)
|
const user: UserAnonymous = await event.locals.pb.collection("users_anonymous").getOne(actor.user!)
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user