aboutsummaryrefslogtreecommitdiff
path: root/plugins/shortcuts
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/shortcuts')
-rw-r--r--plugins/shortcuts/README.md7
-rw-r--r--plugins/shortcuts/shortcuts.c65
-rw-r--r--plugins/shortcuts/shortcuts.h5
3 files changed, 0 insertions, 77 deletions
diff --git a/plugins/shortcuts/README.md b/plugins/shortcuts/README.md
deleted file mode 100644
index 9718c4d..0000000
--- a/plugins/shortcuts/README.md
+++ /dev/null
@@ -1,7 +0,0 @@
-## About
-
-This code automatically redirects shortcuts to their longer expansions. Similar to DuckDuckGo's bangs (<https://duckduckgo.com/bangs>)
-
-Note that Whoogle (the default search engine) also has its own bangs!
-- See: https://github.com/benbusby/whoogle-search/blob/main/app/utils/bangs.py
-- and https://duckduckgo.com/bang.v255.js
diff --git a/plugins/shortcuts/shortcuts.c b/plugins/shortcuts/shortcuts.c
deleted file mode 100644
index e26fb66..0000000
--- a/plugins/shortcuts/shortcuts.c
+++ /dev/null
@@ -1,65 +0,0 @@
-#include <stdbool.h>
-#include <stdio.h>
-#include <string.h>
-
-#include "../strings/strings.h"
-
-#define SHORTCUT_N 41
-#define DEBUG false
-
-/* Inspired by https://duckduckgo.com/bangs */
-int shortcut_expand(const char* uri, char* output)
-{
- int len_uri = strlen(uri);
- int len_output = strlen(output);
-
- if ((len_output - len_uri) < SHORTCUT_N) {
- fprintf(stderr, "Not enough memory\n");
- return 1; // not enough memory.
- } else {
- char* shortcuts[] = {
- "!aa",
- "!blog",
- "!fnf",
- "!fnc",
- "!hn",
- "!hnb"
- "!x",
- };
-
- char* expansions[] = {
- "https://annas-archive.org",
- "https://nunosempere.com/blog",
- "https://forum.nunosempere.com/frontpage",
- "https://forum.nunosempere.com/comments",
- "https://news.ycombinator.com",
- "https://news.ycombinator.com/best",
- "https://twitter.com",
- };
-
- // len = sizeof(shortcuts) / sizeof(shortcuts[0]);
- int len = sizeof(shortcuts) / sizeof(char*);
-
- for (int i = 0; i < len; i++) {
- str_init(output, len_output);
- int replace_check = str_replace_start(uri, shortcuts[i],
- expansions[i], output);
- switch (replace_check) {
- case 0: // no match found
- break;
- case 1: // str_replace_start somehow failed
- fprintf(stderr, "str_replace_start failed\n");
- return 1;
- break;
- case 2: // match succeeded
- return 2;
- break;
- default:
- fprintf(stderr, "Unreachable state\n");
- }
- }
- strcpy(output, uri);
- }
- if (DEBUG) printf("No match found\n\n");
- return 0;
-}
diff --git a/plugins/shortcuts/shortcuts.h b/plugins/shortcuts/shortcuts.h
deleted file mode 100644
index 5276281..0000000
--- a/plugins/shortcuts/shortcuts.h
+++ /dev/null
@@ -1,5 +0,0 @@
-#pragma once
-
-#define SHORTCUT_N 41
-
-int shortcut_expand(const char* uri, char* output);