2018-08-09 04:24:49 +00:00
|
|
|
/* Copyright (C) 2018 Curtis McEnroe <june@causal.agency>
|
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Affero 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 Affero General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Affero General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <assert.h>
|
|
|
|
#include <err.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <sysexits.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
|
|
|
|
#include "chat.h"
|
|
|
|
|
2018-09-02 20:13:00 +00:00
|
|
|
static const char *Schemes[] = {
|
2018-10-22 20:32:02 +00:00
|
|
|
"cvs:",
|
2018-08-09 04:24:49 +00:00
|
|
|
"ftp:",
|
2018-10-22 20:32:02 +00:00
|
|
|
"git:",
|
|
|
|
"http:",
|
|
|
|
"https:",
|
|
|
|
"irc:",
|
|
|
|
"ircs:",
|
|
|
|
"magnet:",
|
|
|
|
"sftp:",
|
|
|
|
"ssh:",
|
|
|
|
"svn:",
|
|
|
|
"telnet:",
|
|
|
|
"vnc:",
|
2018-08-09 04:24:49 +00:00
|
|
|
};
|
2018-09-02 20:13:00 +00:00
|
|
|
static const size_t SchemesLen = sizeof(Schemes) / sizeof(Schemes[0]);
|
2018-08-09 04:24:49 +00:00
|
|
|
|
2018-08-11 03:31:20 +00:00
|
|
|
struct Entry {
|
|
|
|
size_t tag;
|
|
|
|
char *url;
|
|
|
|
};
|
|
|
|
|
2018-09-02 20:13:00 +00:00
|
|
|
enum { RingLen = 32 };
|
|
|
|
static_assert(!(RingLen & (RingLen - 1)), "power of two RingLen");
|
2018-08-09 04:24:49 +00:00
|
|
|
|
2018-08-11 03:31:20 +00:00
|
|
|
static struct {
|
2018-09-02 20:13:00 +00:00
|
|
|
struct Entry buf[RingLen];
|
2018-08-11 03:31:20 +00:00
|
|
|
size_t end;
|
|
|
|
} ring;
|
|
|
|
|
2018-09-11 18:36:30 +00:00
|
|
|
static void ringPush(struct Tag tag, const char *url, size_t len) {
|
2018-08-11 03:31:20 +00:00
|
|
|
free(ring.buf[ring.end].url);
|
|
|
|
ring.buf[ring.end].tag = tag.id;
|
|
|
|
ring.buf[ring.end].url = strndup(url, len);
|
|
|
|
if (!ring.buf[ring.end].url) err(EX_OSERR, "strndup");
|
2018-09-02 20:13:00 +00:00
|
|
|
ring.end = (ring.end + 1) & (RingLen - 1);
|
2018-08-09 04:24:49 +00:00
|
|
|
}
|
|
|
|
|
2018-09-11 18:36:30 +00:00
|
|
|
static struct Entry ringEntry(size_t i) {
|
|
|
|
return ring.buf[(ring.end + i) & (RingLen - 1)];
|
|
|
|
}
|
|
|
|
|
2018-08-11 03:31:20 +00:00
|
|
|
void urlScan(struct Tag tag, const char *str) {
|
2018-08-09 04:24:49 +00:00
|
|
|
while (str[0]) {
|
|
|
|
size_t len = 1;
|
2018-09-02 20:13:00 +00:00
|
|
|
for (size_t i = 0; i < SchemesLen; ++i) {
|
|
|
|
if (strncmp(str, Schemes[i], strlen(Schemes[i]))) continue;
|
2018-08-09 04:24:49 +00:00
|
|
|
len = strcspn(str, " >\"");
|
2018-09-11 18:36:30 +00:00
|
|
|
ringPush(tag, str, len);
|
2018-08-09 04:24:49 +00:00
|
|
|
}
|
|
|
|
str = &str[len];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-08-11 03:31:20 +00:00
|
|
|
void urlList(struct Tag tag) {
|
2018-08-09 04:24:49 +00:00
|
|
|
uiHide();
|
2018-09-02 20:13:00 +00:00
|
|
|
for (size_t i = 0; i < RingLen; ++i) {
|
2018-09-11 18:36:30 +00:00
|
|
|
struct Entry entry = ringEntry(i);
|
2018-08-11 03:31:20 +00:00
|
|
|
if (!entry.url || entry.tag != tag.id) continue;
|
|
|
|
printf("%s\n", entry.url);
|
2018-08-09 04:24:49 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-09-11 18:36:30 +00:00
|
|
|
void urlOpenMatch(struct Tag tag, const char *substr) {
|
|
|
|
for (size_t i = RingLen - 1; i < RingLen; --i) {
|
|
|
|
struct Entry entry = ringEntry(i);
|
|
|
|
if (!entry.url || entry.tag != tag.id) continue;
|
|
|
|
if (!strstr(entry.url, substr)) continue;
|
2018-10-28 06:14:22 +00:00
|
|
|
eventPipe((const char *[]) { "open", entry.url, NULL });
|
2018-09-11 18:36:30 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void urlOpenRange(struct Tag tag, size_t at, size_t to) {
|
2018-08-13 03:44:58 +00:00
|
|
|
size_t argc = 1;
|
2018-10-28 06:14:22 +00:00
|
|
|
const char *argv[2 + RingLen] = { "open" };
|
2018-08-13 03:44:58 +00:00
|
|
|
size_t tagIndex = 0;
|
2018-09-08 04:14:15 +00:00
|
|
|
for (size_t i = RingLen - 1; i < RingLen; --i) {
|
2018-09-11 18:36:30 +00:00
|
|
|
struct Entry entry = ringEntry(i);
|
2018-08-11 03:31:20 +00:00
|
|
|
if (!entry.url || entry.tag != tag.id) continue;
|
2018-08-13 03:44:58 +00:00
|
|
|
if (tagIndex >= at && tagIndex < to) argv[argc++] = entry.url;
|
|
|
|
tagIndex++;
|
2018-08-11 03:31:20 +00:00
|
|
|
}
|
2018-09-10 23:18:26 +00:00
|
|
|
argv[argc] = NULL;
|
|
|
|
if (argc > 1) eventPipe(argv);
|
2018-08-09 04:24:49 +00:00
|
|
|
}
|