mirror of
https://github.com/misskey-dev/misskey.git
synced 2025-01-23 02:51:12 +09:00
8d06a6475e
* chore: 著作権とライセンスについての情報を各ファイルに追加する * chore: Add the SPDX information to each file Add copyright and licensing information as defined in version 3.0 of the REUSE Specification. * tweak format --------- Co-authored-by: syuilo <Syuilotan@yahoo.co.jp> * chore: Add SPDX-License-Identifier [skip ci] * add missing SPDX-License-Identifier * remove unused file --------- Co-authored-by: Shun Sakai <sorairolake@protonmail.ch> Co-authored-by: syuilo <Syuilotan@yahoo.co.jp> Co-authored-by: Chocolate Pie <106949016+chocolate-pie@users.noreply.github.com>
36 lines
892 B
TypeScript
36 lines
892 B
TypeScript
/*
|
|
* SPDX-FileCopyrightText: syuilo and other misskey contributors
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
*/
|
|
|
|
import * as Acct from 'misskey-js/built/acct';
|
|
import { host as localHost } from '@/config';
|
|
|
|
export async function genSearchQuery(v: any, q: string) {
|
|
let host: string;
|
|
let userId: string;
|
|
if (q.split(' ').some(x => x.startsWith('@'))) {
|
|
for (const at of q.split(' ').filter(x => x.startsWith('@')).map(x => x.substring(1))) {
|
|
if (at.includes('.')) {
|
|
if (at === localHost || at === '.') {
|
|
host = null;
|
|
} else {
|
|
host = at;
|
|
}
|
|
} else {
|
|
const user = await v.os.api('users/show', Acct.parse(at)).catch(x => null);
|
|
if (user) {
|
|
userId = user.id;
|
|
} else {
|
|
// todo: show error
|
|
}
|
|
}
|
|
}
|
|
}
|
|
return {
|
|
query: q.split(' ').filter(x => !x.startsWith('/') && !x.startsWith('@')).join(' '),
|
|
host: host,
|
|
userId: userId,
|
|
};
|
|
}
|