mirror of
https://github.com/Rouji/single_php_filehost.git
synced 2025-04-04 16:39:34 +00:00
point hupl link to github because google pulled the app from the store for no reason they feel is important enough to mention to me. also add a hupl uploader link
This commit is contained in:
parent
0e52b3b0da
commit
3a2d84d7de
28
index.php
28
index.php
@ -32,6 +32,10 @@ else if (isset($_GET['sharex'])) //send sharex config
|
|||||||
{
|
{
|
||||||
sendShareXConfig();
|
sendShareXConfig();
|
||||||
}
|
}
|
||||||
|
else if (isset($_GET['hupl'])) //send hupl config
|
||||||
|
{
|
||||||
|
sendHuplConfig();
|
||||||
|
}
|
||||||
else if (isset($argv[1]) && //file was called from cmd, to purge old files
|
else if (isset($argv[1]) && //file was called from cmd, to purge old files
|
||||||
$argv[1] === 'purge')
|
$argv[1] === 'purge')
|
||||||
{
|
{
|
||||||
@ -257,6 +261,27 @@ EOT;
|
|||||||
print($content);
|
print($content);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
// send a Hupl uploader config as .hupl (which is just JSON)
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
function sendHuplConfig()
|
||||||
|
{
|
||||||
|
global $HTTP_PROTO;
|
||||||
|
$host = $_SERVER["HTTP_HOST"];
|
||||||
|
$filename = $host.".hupl";
|
||||||
|
$content = <<<EOT
|
||||||
|
{
|
||||||
|
"name": "$host",
|
||||||
|
"type": "http",
|
||||||
|
"targetUrl": "$HTTP_PROTO://$host/",
|
||||||
|
"fileParam": "file"
|
||||||
|
}
|
||||||
|
EOT;
|
||||||
|
header("Content-type: application/octet-stream");
|
||||||
|
header('Content-Disposition: attachment; filename="'.$filename.'"');
|
||||||
|
header("Content-Length: ".strlen($content));
|
||||||
|
print($content);
|
||||||
|
}
|
||||||
|
|
||||||
////////////////////////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
// print a plaintext info page, explaining what this script does and how to
|
// print a plaintext info page, explaining what this script does and how to
|
||||||
@ -273,6 +298,7 @@ function printInfo()
|
|||||||
|
|
||||||
$url = $HTTP_PROTO."://".$_SERVER["HTTP_HOST"].$_SERVER['REQUEST_URI'];
|
$url = $HTTP_PROTO."://".$_SERVER["HTTP_HOST"].$_SERVER['REQUEST_URI'];
|
||||||
$sharexUrl = $url."?sharex";
|
$sharexUrl = $url."?sharex";
|
||||||
|
$huplUrl = $url."?hupl";
|
||||||
|
|
||||||
echo <<<EOT
|
echo <<<EOT
|
||||||
<pre>
|
<pre>
|
||||||
@ -281,7 +307,7 @@ You can upload files to this site via a simple HTTP POST, e.g. using curl:
|
|||||||
curl -F "file=@/path/to/your/file.jpg" $url
|
curl -F "file=@/path/to/your/file.jpg" $url
|
||||||
|
|
||||||
On Windows, you can use <a href="https://getsharex.com/">ShareX</a> and import <a href="$sharexUrl">this</a> custom uploader.
|
On Windows, you can use <a href="https://getsharex.com/">ShareX</a> and import <a href="$sharexUrl">this</a> custom uploader.
|
||||||
On Android, you can use an app called <a href="https://play.google.com/store/apps/details?id=eu.imouto.hupl">Hupl</a>.
|
On Android, you can use an app called <a href="https://github.com/Rouji/Hupl">Hupl</a> with <a href="$huplUrl">this</a> uploader.
|
||||||
|
|
||||||
|
|
||||||
Or simply choose a file and click "Upload" below:
|
Or simply choose a file and click "Upload" below:
|
||||||
|
Loading…
Reference in New Issue
Block a user