// Code generated by "jade.go"; DO NOT EDIT. package web import ( "html" "io" "strconv" ) const ( index__0 = `Arav's dwelling / Upload

Rules

Free space

` index__4 = `` index__7 = `
` index__8 = `

Upload

You can use cURL to upload a file: curl -F 'file=@somefile.ext' https://upload.arav.top

Over I2P: curl --proxy 127.0.0.1:4444 -F 'file=@somefile.ext' http://upload.arav.i2p

A resulted link looks like this: /f/base64rawURL(sha256)/filename.ext.

filename.ext is mandatory. It is a name the file will be retrieved with.

Delete

You can delete a file using cURL: curl -XDELETE https://upload.arav.top/<hash>

Over I2P: curl --proxy 127.0.0.1:4444 -XDELETE http://upload.arav.i2p/<hash>

Privacy statements

I WILL cooperate with law enforcements and provide them with logs, guess I shouldn't clarify why. Abuses should be sent to admin@arav.top.

Upload logs include: access time, IP-address, name of a file it was uploaded with, a SHA-256 hash of the file, download name*, size of the file in bytes, User-Agent.

Each download and deletion are also being logged and include: access time, IP-address, name of a file it was requested with, download name*, User-Agent.

*Download name is a salted SHA-256 hash of the file encoded using base64 raw URL encoding. The hash is being salted to make useless any attempt of bruteforcing.

` ) func Index(mainSite string, storageCapacity, storageUsed int64, keepForHours int, fileMaxSize, storageUsedStr, storageCapacityStr, storageAvailableStr string, wr io.Writer) { buffer := &WriterAsBuffer{wr} buffer.WriteString(index__0) buffer.WriteString(html.EscapeString(mainSite)) buffer.WriteString(index__1) buffer.WriteString(html.EscapeString(fileMaxSize)) buffer.WriteString(index__2) buffer.WriteString(html.EscapeString(strconv.FormatInt(int64(keepForHours), 10))) buffer.WriteString(index__3) buffer.WriteString(html.EscapeString(storageUsedStr)) buffer.WriteString(index__4) buffer.WriteString(html.EscapeString(strconv.FormatInt(storageUsed, 10))) buffer.WriteString(index__5) buffer.WriteString(html.EscapeString(strconv.FormatInt(storageCapacity, 10))) buffer.WriteString(index__6) buffer.WriteString(html.EscapeString(storageCapacityStr)) buffer.WriteString(index__7) buffer.WriteString(html.EscapeString(storageAvailableStr)) buffer.WriteString(index__8) }