78 lines
2 KiB
Perl
Executable file
78 lines
2 KiB
Perl
Executable file
#!/usr/bin/perl
|
|
# This file is part of sakisafe.
|
|
|
|
use Mojolicious::Lite -signatures;
|
|
use Mojolicious::Routes::Pattern;
|
|
plugin 'RenderFile';
|
|
my $MAX_SIZE = 1024 * 1024 * 100;
|
|
|
|
get '/' => 'index';
|
|
|
|
get '/f/:dir/:name' => sub ($c) {
|
|
my $captures = $c->req->url;
|
|
$captures =~ s/^.//;
|
|
my $filerender = Mojolicious::Plugin::RenderFile->new;
|
|
$c->render_file( filepath => $captures );
|
|
};
|
|
|
|
app->max_request_size( 1024 * 1024 * 100 );
|
|
my $dirname;
|
|
post '/upload' => sub ($c) {
|
|
my $filedata = $c->param("file");
|
|
if ( $filedata->size > $MAX_SIZE ) {
|
|
return $c->render(
|
|
text => "Max upload size: $MAX_SIZE",
|
|
status => 400
|
|
);
|
|
}
|
|
|
|
# Generate random string for the directory
|
|
my @chars = ( '0' .. '9', 'a' .. 'Z' );
|
|
$dirname .= $chars[ rand @chars ] for 1 .. 5;
|
|
|
|
mkdir( "f/" . $dirname );
|
|
$filedata->move_to( "f/" . $dirname . "/" . $filedata->filename );
|
|
my $host = $c->req->url->to_abs->host;
|
|
$c->res->headers->header(
|
|
'Location' => "http://$host/$dirname/" . $filedata->filename );
|
|
$c->render(
|
|
text => "Uploaded to http://$host/f/$dirname/" . $filedata->filename,
|
|
status => 201,
|
|
);
|
|
$dirname = "";
|
|
|
|
};
|
|
|
|
app->start;
|
|
|
|
__DATA__
|
|
|
|
@@ index.html.ep
|
|
|
|
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<title>sakisafe</title>
|
|
<link rel="stylesheet" type="text/css" href="index.css"/>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
</head>
|
|
<body>
|
|
<h1>sakisafe</h1>
|
|
<h2>shitless file upload, pastebin and url shorter</h2>
|
|
<img src="saki.png"/>
|
|
<h2>USAGE</h2>
|
|
<p>POST a file:</p>
|
|
<code>curl -F 'file=@yourfile.png' $SITE_URL</code>
|
|
<p>Shorten URL:</p>
|
|
<code>curl -F 'url=https://example.org' $SITE_URL</code>
|
|
<p>Post your text directly</p>
|
|
<code>curl -F 'file=@-' $SITE_URL</code>
|
|
<div class="left">
|
|
<h2>Or just upload a file here</h2>
|
|
<form ENCTYPE='multipart/form-data' method='post' action='/upload'>
|
|
<input type='file' name='file' size='30'/>
|
|
<input type='submit' value='upload'/>
|
|
</form>
|
|
</div>
|
|
</body>
|
|
</html>
|