2022-10-29 13:25:34 +00:00
|
|
|
/*
|
|
|
|
* Vencord, a modification for Discord's desktop app
|
|
|
|
* Copyright (c) 2022 Vendicated and contributors
|
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU 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 General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
2023-03-08 07:01:24 +00:00
|
|
|
import { addContextMenuPatch, findGroupChildrenByChildId, NavContextMenuPatchCallback, removeContextMenuPatch } from "@api/ContextMenu";
|
2022-11-28 12:37:55 +00:00
|
|
|
import { Devs } from "@utils/constants";
|
|
|
|
import definePlugin from "@utils/types";
|
|
|
|
import { Menu } from "@webpack/common";
|
2022-10-29 13:25:34 +00:00
|
|
|
|
|
|
|
const Engines = {
|
2022-12-05 23:14:48 +00:00
|
|
|
Google: "https://lens.google.com/uploadbyurl?url=",
|
2022-10-29 13:25:34 +00:00
|
|
|
Yandex: "https://yandex.com/images/search?rpt=imageview&url=",
|
|
|
|
SauceNAO: "https://saucenao.com/search.php?url=",
|
|
|
|
IQDB: "https://iqdb.org/?url=",
|
2023-01-03 18:42:06 +00:00
|
|
|
TinEye: "https://www.tineye.com/search?url=",
|
|
|
|
ImgOps: "https://imgops.com/start?url="
|
2022-10-29 13:25:34 +00:00
|
|
|
};
|
|
|
|
|
2023-03-08 07:01:24 +00:00
|
|
|
function search(src: string, engine: string) {
|
|
|
|
open(engine + encodeURIComponent(src), "_blank");
|
|
|
|
}
|
|
|
|
|
2023-03-19 07:53:00 +00:00
|
|
|
const imageContextMenuPatch: NavContextMenuPatchCallback = (children, props) => {
|
|
|
|
if (!props) return;
|
|
|
|
const { reverseImageSearchType, itemHref, itemSrc } = props;
|
2022-10-29 13:25:34 +00:00
|
|
|
|
2023-03-08 07:01:24 +00:00
|
|
|
if (!reverseImageSearchType || reverseImageSearchType !== "img") return;
|
2022-11-07 17:52:34 +00:00
|
|
|
|
2023-03-08 07:01:24 +00:00
|
|
|
const src = itemHref ?? itemSrc;
|
|
|
|
|
2023-03-21 06:07:16 +00:00
|
|
|
const group = findGroupChildrenByChildId("copy-link", children);
|
2023-03-08 07:01:24 +00:00
|
|
|
if (group && !group.some(child => child?.props?.id === "search-image")) {
|
|
|
|
group.push((
|
2022-10-29 13:25:34 +00:00
|
|
|
<Menu.MenuItem
|
|
|
|
label="Search Image"
|
|
|
|
key="search-image"
|
|
|
|
id="search-image"
|
|
|
|
>
|
|
|
|
{Object.keys(Engines).map(engine => {
|
|
|
|
const key = "search-image-" + engine;
|
|
|
|
return (
|
|
|
|
<Menu.MenuItem
|
|
|
|
key={key}
|
|
|
|
id={key}
|
|
|
|
label={engine}
|
2023-03-08 07:01:24 +00:00
|
|
|
action={() => search(src, Engines[engine])}
|
2022-10-29 13:25:34 +00:00
|
|
|
/>
|
|
|
|
);
|
|
|
|
})}
|
|
|
|
<Menu.MenuItem
|
|
|
|
key="search-image-all"
|
|
|
|
id="search-image-all"
|
|
|
|
label="All"
|
2023-03-08 07:01:24 +00:00
|
|
|
action={() => Object.values(Engines).forEach(e => search(src, e))}
|
2022-10-29 13:25:34 +00:00
|
|
|
/>
|
|
|
|
</Menu.MenuItem>
|
2023-03-08 07:01:24 +00:00
|
|
|
));
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
export default definePlugin({
|
|
|
|
name: "ReverseImageSearch",
|
|
|
|
description: "Adds ImageSearch to image context menus",
|
|
|
|
authors: [Devs.Ven, Devs.Nuckyz],
|
2023-04-04 19:09:47 +00:00
|
|
|
dependencies: ["ContextMenuAPI"],
|
2023-03-08 07:01:24 +00:00
|
|
|
patches: [
|
|
|
|
{
|
|
|
|
find: ".Messages.MESSAGE_ACTIONS_MENU_LABEL",
|
|
|
|
replacement: {
|
2023-03-09 00:19:28 +00:00
|
|
|
match: /favoriteableType:\i,(?<=(\i)\.getAttribute\("data-type"\).+?)/,
|
|
|
|
replace: (m, target) => `${m}reverseImageSearchType:${target}.getAttribute("data-role"),`
|
2023-03-08 07:01:24 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
],
|
|
|
|
|
|
|
|
start() {
|
|
|
|
addContextMenuPatch("message", imageContextMenuPatch);
|
2022-10-29 13:25:34 +00:00
|
|
|
},
|
|
|
|
|
2023-03-08 07:01:24 +00:00
|
|
|
stop() {
|
|
|
|
removeContextMenuPatch("message", imageContextMenuPatch);
|
2022-10-29 13:25:34 +00:00
|
|
|
}
|
|
|
|
});
|