summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMitya Selivanov <automainint@guattari.tech>2025-03-09 10:35:28 +0100
committerMitya Selivanov <automainint@guattari.tech>2025-03-09 10:35:28 +0100
commit636707ffc5ff83725cad657c6ae968ead9c75a8f (patch)
treefc32cfbea3c8a5986dafc30e62446f8ca9aafc99
parent0242504a0eecb3543f47d6d6c4ef3e38ee322534 (diff)
downloadcgi-636707ffc5ff83725cad657c6ae968ead9c75a8f.zip
Update links
-rwxr-xr-xmain.c49
1 files changed, 31 insertions, 18 deletions
diff --git a/main.c b/main.c
index 30500e4..2708b41 100755
--- a/main.c
+++ b/main.c
@@ -70,6 +70,7 @@ exit $? # */
// ================================================================
#define COOKIE_THEME "theme"
+#define COOKIE_KNOCK_KNOCK "knock=knock"
#define FORM_NAME "submit"
#define FORM_ITEM_DATA "data"
@@ -477,24 +478,31 @@ static Redirect redirects[] = {
.url = "https://reddit.com/u/angsthotep",
}, {
.alias = "/simplexchat",
- .url =
- "https://simplex.chat/contact/#/"
- "?v=1-4&smp=smp%3A%2F%"
- "2Fhejn2gVIqNU6xjtGM3OwQeuk8ZEbDXVJXAlnSBJBWUA%3D%"
- "40smp16.simplex.im%2F8r8DH3EY7nAy1iS3LONVU9Wjc3TiVHxT%"
- "23%2F%3Fv%3D1-2%26dh%3DMCowBQYDK2VuAyEAc_"
- "Do6A3LfIKd49my6sv324pikcN3y9pFRQLzFG3rA1U%253D%26srv%"
- "3Dp3ktngodzi6qrf7w64mmde3syuzrv57y55hxabqcq3l5p6oi7yzze6"
- "qd.onion",
+ .url = "https://simplex.chat/contact/#/?v=1-4&smp=smp%3A%2F%2Fhejn2gVIqNU6xjtGM3OwQeuk8ZEbDXVJXAlnSBJBWUA%3D%40smp16.simplex.im%2F8r8DH3EY7nAy1iS3LONVU9Wjc3TiVHxT%23%2F%3Fv%3D1-2%26dh%3DMCowBQYDK2VuAyEAc_Do6A3LfIKd49my6sv324pikcN3y9pFRQLzFG3rA1U%253D%26srv%3Dp3ktngodzi6qrf7w64mmde3syuzrv57y55hxabqcq3l5p6oi7yzze6qd.onion",
+ }, {
+ .alias = "/spotify/2020",
+ .url = "https://open.spotify.com/album/1GqWmnHnGbuH1DF7KJmG3S",
+ }, {
+ .alias = "/deezer/2020",
+ .url = "https://dzr.page.link/Sq358QL3Lxr7hb5q8",
+ }, {
+ .alias = "/apple/2020",
+ .url = "https://music.apple.com/us/album/vertex-single/1533238208",
}, {
.alias = "/spotify/2021",
- .url = "https://open.spotify.com/album/5N6tZYohr2mrmr0XelAwlK?si=RzcBdOAKRWKozDYJ91iREA",
+ .url = "https://open.spotify.com/album/5N6tZYohr2mrmr0XelAwlK",
+ }, {
+ .alias = "/deezer/2021",
+ .url = "https://dzr.page.link/cgJRvcVuq3rSvZXc8",
}, {
.alias = "/apple/2021",
.url = "https://music.apple.com/us/album/accelerationism-ep/1548020164",
}, {
- .alias = "/deezer/2021",
- .url = "https://deezer.page.link/PXS8q1jEqECa79rEA",
+ .alias = "/spotify/2025",
+ .url = "https://open.spotify.com/album/1bkVShIGB1bzRHBOx06s9M",
+ }, {
+ .alias = "/deezer/2025",
+ .url = "https://dzr.page.link/UJ1rtyPsSsPiuKb96",
}, {
.alias = "/juliaset",
.url = "/static/plain/juliaset/index.htm",
@@ -3017,8 +3025,6 @@ void skip_spaces(c8 const *s, i32 *n) {
}
b8 knock_knock_cookie(c8 const *cookie) {
- c8 knock_knock[] = "knock=knock";
-
{
c8 const *val = cookie;
c8 const *val_end = NULL;
@@ -3028,13 +3034,13 @@ b8 knock_knock_cookie(c8 const *cookie) {
val_end = val;
while (*val_end != ';' && *val_end != '\0') ++val_end;
- if (memcmp(val, knock_knock, sizeof knock_knock - 1) == 0)
+ if (memcmp(val, COOKIE_KNOCK_KNOCK, sizeof COOKIE_KNOCK_KNOCK - 1) == 0)
return 1;
}
}
printf("Status: 200 OK\r\n");
- printf("Set-Cookie: %s; Path=/; SameSite=Lax; Expires=", knock_knock);
+ printf("Set-Cookie: %s; Path=/; SameSite=Lax; Expires=", COOKIE_KNOCK_KNOCK);
print_time_gmt(6 * SECONDS_IN_MONTH);
printf("; HttpOnly\r\n");
printf("Cross-Origin-Opener-Policy: same-origin\r\n");
@@ -3301,6 +3307,10 @@ i32 main(i32 argc, c8 **argv) {
}
if (redirects[i].cgi != NULL) {
+ // Knock-knock.
+ if (!knock_knock_cookie(http_cookie))
+ return 0;
+
static c8 buf[4096] = {0};
snprintf(buf, sizeof buf - 1, "PATH_INFO=%s", redirects[i].url);
@@ -3396,7 +3406,6 @@ i32 main(i32 argc, c8 **argv) {
}
// Knock-knock.
-
if (!knock_knock_cookie(http_cookie))
return 0;
@@ -3459,8 +3468,12 @@ i32 main(i32 argc, c8 **argv) {
if (doc == DOC_404)
printf("Status: 404 Page Not Found\r\n");
- else
+ else {
printf("Status: 200 OK\r\n");
+ printf("Set-Cookie: %s; Path=/; SameSite=Lax; Expires=", COOKIE_KNOCK_KNOCK);
+ print_time_gmt(6 * SECONDS_IN_MONTH);
+ printf("; HttpOnly\r\n");
+ }
setup_theme_cookie(http_cookie, query_string);