forked from electricdusk/rushlink
40 lines
1.4 KiB
Cheetah
40 lines
1.4 KiB
Cheetah
{{define "body"}}
|
|
<h1>#RU paste-dump</h1>
|
|
|
|
Based on https://0x0.st/, this site allows you to easily upload files and shorten URLs using
|
|
the command line.
|
|
|
|
<h2>Web-API</h2>
|
|
<section>
|
|
<form action="/" method="post" enctype="multipart/form-data">
|
|
<label class="formLabel" for="fileUploadField">Upload a file:</label>
|
|
<input class="formMain" id="fileUploadField" name="file" type="file" />
|
|
<input class="formSubmit" id="fileUploadSubmit" type="submit" value="upload!" />
|
|
</form>
|
|
</section>
|
|
<section>
|
|
<form action="/" method="post" enctype="multipart/form-data">
|
|
<label class="formLabel" for="shortenURLField">Upload a URL:</label>
|
|
<input class="formMain" id="shortenURLField" name="shorten" type="url" />
|
|
<input class="formSubmit" id="shortenURLSubmit" type="submit" value="shorten!" />
|
|
</form>
|
|
</section>
|
|
|
|
<h2>Command line API</h2>
|
|
<pre>
|
|
# Upload a file
|
|
curl -F'file=@yourfile.png' <a href="{{.Host}}">{{.Host}}</a>
|
|
|
|
# Shorten a URL
|
|
curl -F'shorten=http://example.com/some/long/url' <a href="{{.Host}}">{{.Host}}</a>
|
|
|
|
# The first line of the result will contain the shortened URL.
|
|
#
|
|
# In the other lines, you will find other information, including
|
|
# information on how to delete the shortened object.
|
|
|
|
# To upload a file and only extract the shortened URL (i.e. throw away the rest)
|
|
curl -F'file=@yourfile.png' <a href="{{.Host}}">{{.Host}}</a> | head -n 1
|
|
</pre>
|
|
{{end}}
|