mirror of
https://github.com/gamaio/UnPS-Short.git
synced 2024-11-14 12:57:26 +00:00
Change shortened links to reflect last commit on index.php
All future shortened links will be unps.us/?id
This commit is contained in:
parent
63a2724f86
commit
b784347291
@ -26,7 +26,7 @@ function checkRemoteFile($ip=null){
|
|||||||
curl_setopt($curlInit, CURLOPT_CONNECTTIMEOUT, 10);
|
curl_setopt($curlInit, CURLOPT_CONNECTTIMEOUT, 10);
|
||||||
curl_setopt($curlInit, CURLOPT_HEADER, true);
|
curl_setopt($curlInit, CURLOPT_HEADER, true);
|
||||||
curl_setopt($curlInit, CURLOPT_RETURNTRANSFER, true);
|
curl_setopt($curlInit, CURLOPT_RETURNTRANSFER, true);
|
||||||
curl_setopt($curlInit, CURLOPT_USERAGENT, 'UnPS-GAMATechnologies (UnPS WebQuery/4-2.8; +http://unps.us)');
|
curl_setopt($curlInit, CURLOPT_USERAGENT, 'UnPS-GAMATechnologies (UnPS WebQuery/4-2.9; +http://unps.us)');
|
||||||
curl_setopt($curlInit, CURLOPT_HTTPHEADER, $header);
|
curl_setopt($curlInit, CURLOPT_HTTPHEADER, $header);
|
||||||
|
|
||||||
$response = curl_exec($curlInit);
|
$response = curl_exec($curlInit);
|
||||||
@ -58,7 +58,7 @@ class api{
|
|||||||
if($result = $sdb->query($sql)){
|
if($result = $sdb->query($sql)){
|
||||||
if($row = $result->fetch_assoc()){
|
if($row = $result->fetch_assoc()){
|
||||||
$short = $row['shortlink'];
|
$short = $row['shortlink'];
|
||||||
return "<div id=\"error\">Existing link: <a onclick=\"copyToClipboard('http://unps.us/?l=$short');\" href=\"http://unps.us/?l=$short\" target=\"$short\">http://unps.us/?l=$short</a></div>";
|
return "<div id=\"error\">Existing link: <a onclick=\"copyToClipboard('http://unps.us/?$short');\" href=\"http://unps.us/?$short\" target=\"$short\">http://unps.us/?$short</a></div>";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if(checkRemoteFile($link) !== true) return "<div id=\"error\">Dead Link: $link</div>";
|
if(checkRemoteFile($link) !== true) return "<div id=\"error\">Dead Link: $link</div>";
|
||||||
@ -72,7 +72,7 @@ class api{
|
|||||||
else: $sql = "INSERT INTO `links` (link, shortlink, dpass) VALUES ('$link', '$short', '$apikey')";
|
else: $sql = "INSERT INTO `links` (link, shortlink, dpass) VALUES ('$link', '$short', '$apikey')";
|
||||||
endif;
|
endif;
|
||||||
|
|
||||||
if($result = $sdb->query($sql)): return "<div id=\"success\">Shortened: <a onclick=\"copyToClipboard('http://unps.us/?l=$short');\" href=\"http://unps.us/?l=$short\" target=\"$short\">http://unps.us/?l=$short</a><br />Your link deletion password (write this down): $dpass</div>";
|
if($result = $sdb->query($sql)): return "<div id=\"success\">Shortened: <a onclick=\"copyToClipboard('http://unps.us/?$short');\" href=\"http://unps.us/?$short\" target=\"$short\">http://unps.us/?$short</a><br />Your link deletion password (write this down): $dpass</div>";
|
||||||
else: return '<div id="error">ERROR: ['.$sdb->error.']</div>';
|
else: return '<div id="error">ERROR: ['.$sdb->error.']</div>';
|
||||||
endif;
|
endif;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user