2023-07-27 07:31:52 +02:00
|
|
|
/*
|
|
|
|
* SPDX-FileCopyrightText: syuilo and other misskey contributors
|
|
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
*/
|
|
|
|
|
2023-09-04 06:33:38 +02:00
|
|
|
import * as Misskey from 'misskey-js';
|
2023-09-19 09:37:43 +02:00
|
|
|
import { host as localHost } from '@/config.js';
|
2019-04-25 00:46:39 +02:00
|
|
|
|
|
|
|
export async function genSearchQuery(v: any, q: string) {
|
|
|
|
let host: string;
|
|
|
|
let userId: string;
|
|
|
|
if (q.split(' ').some(x => x.startsWith('@'))) {
|
2023-07-14 00:59:54 +02:00
|
|
|
for (const at of q.split(' ').filter(x => x.startsWith('@')).map(x => x.substring(1))) {
|
2019-04-25 00:46:39 +02:00
|
|
|
if (at.includes('.')) {
|
|
|
|
if (at === localHost || at === '.') {
|
|
|
|
host = null;
|
|
|
|
} else {
|
|
|
|
host = at;
|
|
|
|
}
|
|
|
|
} else {
|
2023-09-04 06:33:38 +02:00
|
|
|
const user = await v.os.api('users/show', Misskey.acct.parse(at)).catch(x => null);
|
2019-04-25 00:46:39 +02:00
|
|
|
if (user) {
|
|
|
|
userId = user.id;
|
|
|
|
} else {
|
|
|
|
// todo: show error
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return {
|
|
|
|
query: q.split(' ').filter(x => !x.startsWith('/') && !x.startsWith('@')).join(' '),
|
|
|
|
host: host,
|
2022-12-22 08:01:59 +01:00
|
|
|
userId: userId,
|
2019-04-25 00:46:39 +02:00
|
|
|
};
|
|
|
|
}
|