about summary refs log tree commit diff
path: root/lr.c
diff options
context:
space:
mode:
authorLeah Neukirchen <leah@vuxu.org>2017-09-12 19:13:29 +0200
committerLeah Neukirchen <leah@vuxu.org>2017-09-12 19:13:29 +0200
commit4b154cdfc9ea0e656ab1e003d7da398050f954a7 (patch)
tree750f1da81a95892dfb36f1dc632754bd1f42c521 /lr.c
parentea76118cc99c2127128d34e7b20bcb3ed2f874b7 (diff)
downloadlr-4b154cdfc9ea0e656ab1e003d7da398050f954a7.tar.gz
lr-4b154cdfc9ea0e656ab1e003d7da398050f954a7.tar.xz
lr-4b154cdfc9ea0e656ab1e003d7da398050f954a7.zip
lr: hyperlink_on: print hostname and use RFC3986-style URI encoding
Diffstat (limited to 'lr.c')
-rw-r--r--lr.c38
1 files changed, 34 insertions, 4 deletions
diff --git a/lr.c b/lr.c
index daadb3f..052bc29 100644
--- a/lr.c
+++ b/lr.c
@@ -99,6 +99,7 @@ static char input_delim = '\n';
 static int current_color;
 static int status;
 static char *basepath;
+static char host[1024];
 
 static char default_ordering[] = "n";
 static char default_format[] = "%p\\n";
@@ -138,6 +139,14 @@ static int uwid, gwid, fwid;
 static time_t now;
 static mode_t default_mask;
 
+// [^a-zA-Z0-9~._/-]
+static char rfc3986[128] = {
+	1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,
+	1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,
+	1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,
+	1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1
+};
+
 struct fileinfo {
 	char *fpath;
 	size_t prefixl;
@@ -1561,14 +1570,27 @@ color_name_on(int c, const char *f, mode_t m)
 }
 
 static void
+print_urlquoted(unsigned char *s)
+{
+	for (; *s; s++)
+		if (*s > 127 || rfc3986[*s])
+			printf("%%%02x", *s);
+		else
+			putchar(*s);
+}
+
+static void
 hyperlink_on(char *fpath)
 {
 	// OSC 8 hyperlink format
 	if (Xflag) {
-		if (*fpath == '/')
-			printf("\033]8;;file://%s\007", fpath);
-		else
-			printf("\033]8;;file://%s/%s\007", basepath, fpath);
+		printf("\033]8;;file://%s", host);
+		if (*fpath != '/') {
+			print_urlquoted((unsigned char *)basepath);
+			putchar('/');
+		}
+		print_urlquoted((unsigned char *)fpath);
+		putchar('\007');
 	}
 }
 
@@ -2065,6 +2087,14 @@ main(int argc, char *argv[])
 			    argv0, strerror(errno));
 			Xflag = 0;
 		}
+
+		if (gethostname(host, sizeof host) == 0) {
+			// termination not posix guaranteed
+			host[sizeof host - 1] = 0;
+		} else {
+			// ignore errors, use no host
+			*host = 0;
+		}
 	}
 
 	for (i = 0; i < Cflag; i++) {