-
Notifications
You must be signed in to change notification settings - Fork 0
/
edit-server.py
executable file
·262 lines (226 loc) · 6.76 KB
/
edit-server.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
#!/usr/bin/perl
# A simple web server that just listens for textarea filter requests
# and runs an editor to manipulate the text. Is intended to be
# used with the TextAid extention for Chrome.
#
# NOTE: If you use this on a shared system, you should configure TextAid
# with a username & password and make sure that the saved authorization
# config file stays secret!
use strict;
use warnings;
use threads;
use Socket;
use IO::Select;
use File::Temp;
use Getopt::Long;
# If you don't want to require authentication, set $REQUIRE_AUTH to 0.
# When it is set to 1, the first authenticated request that is received
# will be saved to the $SAVE_AUTH_FILE file. All subsequent requests
# are compared to that value. To change your password, just remove the
# file and make a new edit-server request using the new auth info.
our $REQUIRE_AUTH = 0;
our $SAVE_AUTH_FILE = "$ENV{HOME}/.edit-server-auth";
# Only accept requests from something that claims to be a chrome-extension.
# Set this to 0 if you want other things to be able to use this script.
our $REQUIRE_CHROME_EXTENSION = 0;
# Configures the port we listen on and if we allow only localhost requests.
our $PORT = 8888;
our $LOCALHOST_ONLY = 1;
# Configure the program that you want to run to handle the requests.
# This editor invocation must NOT return control to this script until
# you are done editing.
our $EDITOR_CMD = '/usr/bin/rgvim -f "%s"';
#our $EDITOR_CMD = '/usr/bin/emacsclient -c "%s"';
# The settings to configure the temp dir and how soon old files are removed.
# If TMPTEMPLATE contains the string -URL64-, then up to 64 chars of the munged
# URL for the textarea's page will be included in the tmp file's filename.
our $TMPDIR = '/tmp';
our $TMPTEMPLATE = 'edit-server-URL64-XXXXXX';
our $TMPSUFFIX = '.txt';
our $CLEAN_AFTER_HOURS = 4;
&Getopt::Long::Configure('bundling');
GetOptions(
'verbose|v+' => \( my $verbosity = 0 ),
'help|h' => \( my $help_opt ),
) or usage();
usage() if $help_opt;
umask 0077; # Disables all "group" and "other" perms when saving files.
$| = 1;
local *S;
socket(S, PF_INET, SOCK_STREAM , getprotobyname('tcp')) or die "couldn't open socket: $!\n";
setsockopt(S, SOL_SOCKET, SO_REUSEADDR, 1);
if ($LOCALHOST_ONLY) {
bind(S, sockaddr_in($PORT, INADDR_LOOPBACK));
} else {
bind(S, sockaddr_in($PORT, INADDR_ANY));
}
listen(S, 5) or die "listen failed: $!\n";
my $sel = IO::Select->new();
$sel->add(*S);
while (1) {
my @con = $sel->can_read();
foreach my $con (@con) {
my $fh;
my $remote = accept($fh, $con);
my($port, $iaddr) = sockaddr_in($remote);
my $addr = inet_ntoa($iaddr);
my $t = threads->create(\&do_edit, $fh);
$t->detach();
}
}
exit;
# Read the text from the content body, edit it, and write it back as our output.
sub do_edit
{
my($fh) = @_;
binmode $fh;
local $_ = <$fh>;
my($method, $path, $ver) = /^(GET|HEAD|POST)\s+(.*?)\s+(HTTP\S+)/;
print "Path: $path\n" if $verbosity >= 1;
unless (defined $ver) {
http_header($fh, 500, 'Invalid request.');
close $fh;
return;
}
if ($method ne 'POST') {
http_header($fh, 200, 'OK', 'Server is up and running. To use it, issue a POST request with the file to edit as the content body.');
close $fh;
return;
}
my %header;
while (<$fh>) {
s/\r?\n$//;
last if $_ eq '';
my($name, $value) = /^(.*?): +(.*)/;
$header{lc($name)} = $value;
print "Header: \L$name\E = $value\n" if $verbosity >= 2;
}
print "-------------------------------------------------------------------\n" if $verbosity >= 2;
if ($REQUIRE_AUTH) {
my $authorized;
my $auth = $header{authorization}; # e.g. "Basic 01234567890ABCDEF=="
if (defined $auth) {
my $line;
if (open AUTH, '<', $SAVE_AUTH_FILE) {
chomp($line = <AUTH>);
close AUTH;
} elsif ($!{ENOENT} && open AUTH, '>', $SAVE_AUTH_FILE) {
# The first request w/o an auth file saves the auth info.
print AUTH $auth, "\n";
close AUTH;
$line = $auth;
} else {
http_header($fh, 501, 'Internal failure -- auth-file failed.');
close $fh;
return;
}
if ($line eq $auth) {
$authorized = 1;
}
}
unless ($authorized) {
http_header($fh, 401, 'Unauthorized!');
close $fh;
return;
}
}
if ($REQUIRE_CHROME_EXTENSION) {
my $origin = $header{origin};
unless (defined $origin && $origin =~ /^chrome-extension:/) {
http_header($fh, 401, 'Unauthorized.');
close $fh;
return;
}
}
my $len = $header{'content-length'};
unless (defined $len && $len =~ /^\d+$/) {
http_header($fh, 500, 'Invalid request -- no content-length.');
close $fh;
return;
}
my $got = read($fh, $_, $len);
if ($got != $len) {
http_header($fh, 500, 'Invalid request -- wrong content-length.');
close $fh;
return;
}
my($query) = $path =~ /\?(.+)/;
(my $template_fn = $TMPTEMPLATE) =~ s/-URL(\d+)-/ '-' . url_filename($query, $1) . '-' /e;
my $tmp = new File::Temp(
TEMPLATE => $template_fn,
DIR => $TMPDIR,
SUFFIX => $TMPSUFFIX,
UNLINK => 0,
);
my $name = $tmp->filename;
print $tmp $_;
close $tmp;
my $cmd = sprintf($EDITOR_CMD, $name);
system $cmd;
unless (open FILE, '<', $name) {
http_header($fh, 500, "Unable to re-open $name: $!");
close $fh;
return;
}
http_header($fh, 200, 'OK', '');
print $fh <FILE>;
close FILE;
close $fh;
# Clean-up old tmp files that have been around for a few hours.
if (opendir(DP, $TMPDIR)) {
(my $match = quotemeta($TMPTEMPLATE . $TMPSUFFIX)) =~ s/(.*[^X])(X+)/ $1 . ('\w' x length($2)) /e;
$match =~ s/\\-URL\d+\\-/-.*-/;
print "Match: $match\n" if $verbosity >= 3;
foreach my $fn (grep /^$match$/o, readdir DP) {
$fn = "$TMPDIR/$fn";
print "Fn: $fn\n" if $verbosity >= 3;
my $age = -M $fn;
if ($age > $CLEAN_AFTER_HOURS/24) {
unlink $fn;
} else {
print "Age: $age\n" if $verbosity >= 3;
}
}
closedir DP;
}
}
sub http_header
{
my $fh = shift;
my $status = shift;
my $status_txt = shift;
@_ = $status_txt unless @_;
print $fh "HTTP/1.0 $status $status_txt\r\n",
"Server: edit-server\r\n",
"Content-Type: text/plain\r\n",
"\r\n", @_;
}
sub url_filename
{
my($query, $max_chars) = @_;
print "Query: $query\n" if $verbosity >= 4;
if (defined $query) {
foreach my $var_val (split /&/, $query) {
my($var, $val) = split /=/, $var_val, 2;
if ($var eq 'url') {
print "Before: $val\n" if $verbosity >= 4;
$val =~ s/\%([0-9a-fA-F]{2})/ chr hex $1 /eg;
$val =~ s{^https?://}{};
$val =~ s/[^-\w.]+/_/g;
$val =~ s/^(.{1,$max_chars}).*/$1/;
print "After: $val\n" if $verbosity >= 4;
return $val;
}
}
}
return 'unknown-url';
}
sub usage
{
die <<EOT;
Usage: edit-server [OPTIONS]
Options:
-v, --verbose Increase debug verbosity (repeatable)
-h, --help Output this help message
EOT
}