mirror of
https://git.lolcat.ca/lolcat/4get.git
synced 2024-11-08 17:43:07 -05:00
bug fixes (without google support)
This commit is contained in:
parent
16ee0b368f
commit
7c771c82c8
11 changed files with 219 additions and 214 deletions
|
@ -60,7 +60,7 @@ $left =
|
||||||
Provide users with a privacy oriented, extremely lightweight, ad free, free as in freedom (and free beer!) way to search for documents around the internet, with minimal, optional javascript code. My long term goal would be to build my own index (that doesn\'t suck) and provide users with an unbiased search engine, with no political inclinations.
|
Provide users with a privacy oriented, extremely lightweight, ad free, free as in freedom (and free beer!) way to search for documents around the internet, with minimal, optional javascript code. My long term goal would be to build my own index (that doesn\'t suck) and provide users with an unbiased search engine, with no political inclinations.
|
||||||
|
|
||||||
<a href="#logs"><h2 id="logs">Do you keep logs?</h2></a>
|
<a href="#logs"><h2 id="logs">Do you keep logs?</h2></a>
|
||||||
I store data temporarly to get the next page of results. This might include search queries, tokens and other parameters. These parameters are encrypted using <div class="code-inline">aes-256-gcm</div> on the serber, for which I give you a key (also known internally as <div class="code-inline">npt</div> token). When you make a request to get the next page, you supply the token, the data is decrypted and the request is fulfilled. This encrypted data is deleted after 7 minutes, or after it\'s used, whichever comes first.<br><br>
|
I store data temporarly to get the next page of results. This might include search queries, tokens and other parameters. These parameters are encrypted using <div class="code-inline">aes-256-gcm</div> on the serber, for which I give you a key (also known internally as <div class="code-inline">npt</div> token). When you make a request to get the next page, you supply the token, the data is decrypted and the request is fulfilled. This encrypted data is deleted after 15 minutes, or after it\'s used, whichever comes first.<br><br>
|
||||||
|
|
||||||
I <b>don\'t</b> log IP addresses, user agents, or anything else. The <div class="code-inline">npt</div> tokens are the only thing that are stored (in RAM, mind you), temporarly, encrypted.
|
I <b>don\'t</b> log IP addresses, user agents, or anything else. The <div class="code-inline">npt</div> tokens are the only thing that are stored (in RAM, mind you), temporarly, encrypted.
|
||||||
|
|
||||||
|
|
4
api.txt
4
api.txt
|
@ -73,8 +73,8 @@
|
||||||
impossible for a 4get operator to peek at the private data of the
|
impossible for a 4get operator to peek at the private data of the
|
||||||
user after a request has been made.
|
user after a request has been made.
|
||||||
|
|
||||||
The tokens will expire as soon as they are used or after a 7 minutes
|
The tokens will expire as soon as they are used or after a 15
|
||||||
inactivity period, whichever comes first.
|
minutes inactivity period, whichever comes first.
|
||||||
|
|
||||||
|
|
||||||
+ Beware of null values!
|
+ Beware of null values!
|
||||||
|
|
|
@ -878,7 +878,7 @@ class frontend{
|
||||||
"option" => [
|
"option" => [
|
||||||
"ddg" => "DuckDuckGo",
|
"ddg" => "DuckDuckGo",
|
||||||
"brave" => "Brave",
|
"brave" => "Brave",
|
||||||
"google" => "Google",
|
//"google" => "Google",
|
||||||
"mojeek" => "Mojeek",
|
"mojeek" => "Mojeek",
|
||||||
"marginalia" => "Marginalia",
|
"marginalia" => "Marginalia",
|
||||||
"wiby" => "wiby"
|
"wiby" => "wiby"
|
||||||
|
@ -892,7 +892,7 @@ class frontend{
|
||||||
"option" => [
|
"option" => [
|
||||||
"ddg" => "DuckDuckGo",
|
"ddg" => "DuckDuckGo",
|
||||||
"yandex" => "Yandex",
|
"yandex" => "Yandex",
|
||||||
"google" => "Google"
|
//"google" => "Google"
|
||||||
]
|
]
|
||||||
];
|
];
|
||||||
break;
|
break;
|
||||||
|
@ -903,7 +903,7 @@ class frontend{
|
||||||
"option" => [
|
"option" => [
|
||||||
"yt" => "YouTube",
|
"yt" => "YouTube",
|
||||||
"ddg" => "DuckDuckGo",
|
"ddg" => "DuckDuckGo",
|
||||||
"google" => "Google"
|
//"google" => "Google"
|
||||||
]
|
]
|
||||||
];
|
];
|
||||||
break;
|
break;
|
||||||
|
@ -914,7 +914,7 @@ class frontend{
|
||||||
"option" => [
|
"option" => [
|
||||||
"ddg" => "DuckDuckGo",
|
"ddg" => "DuckDuckGo",
|
||||||
"brave" => "Brave",
|
"brave" => "Brave",
|
||||||
"google" => "Google",
|
//"google" => "Google",
|
||||||
"mojeek" => "Mojeek"
|
"mojeek" => "Mojeek"
|
||||||
]
|
]
|
||||||
];
|
];
|
||||||
|
@ -1285,7 +1285,7 @@ class frontend{
|
||||||
return htmlspecialchars($image);
|
return htmlspecialchars($image);
|
||||||
}
|
}
|
||||||
|
|
||||||
return "/proxy.php?i=" . urlencode($image) . "&s=" . $format;
|
return "/proxy?i=" . urlencode($image) . "&s=" . $format;
|
||||||
}
|
}
|
||||||
|
|
||||||
public function htmlnextpage($gets, $npt, $page){
|
public function htmlnextpage($gets, $npt, $page){
|
||||||
|
|
|
@ -28,7 +28,7 @@ class nextpage{
|
||||||
$this->scraper .
|
$this->scraper .
|
||||||
(string)($key),
|
(string)($key),
|
||||||
gzdeflate($salt.$iv.$out.$tag),
|
gzdeflate($salt.$iv.$out.$tag),
|
||||||
420 // cache information for 7 minutes blaze it
|
900 // cache information for 15 minutes blaze it
|
||||||
);
|
);
|
||||||
|
|
||||||
return
|
return
|
||||||
|
|
|
@ -109,6 +109,7 @@ try{
|
||||||
|
|
||||||
$image->stripImage();
|
$image->stripImage();
|
||||||
$image->setFormat("jpeg");
|
$image->setFormat("jpeg");
|
||||||
|
$image->setImageCompressionQuality(90);
|
||||||
$image->setImageCompression(Imagick::COMPRESSION_JPEG2000);
|
$image->setImageCompression(Imagick::COMPRESSION_JPEG2000);
|
||||||
|
|
||||||
$proxy->getfilenameheader($payload["headers"], $_GET["i"]);
|
$proxy->getfilenameheader($payload["headers"], $_GET["i"]);
|
||||||
|
|
|
@ -1565,18 +1565,17 @@ class google{
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
Fallback to parsing it as an embed
|
Detect if its a wikipedia thing
|
||||||
*/
|
*/
|
||||||
|
$h3 =
|
||||||
|
$this->fuckhtml
|
||||||
|
->getElementsByTagName("h3");
|
||||||
|
|
||||||
$table = [
|
|
||||||
"title" => null,
|
|
||||||
"description" => [],
|
|
||||||
"url" => null,
|
|
||||||
"thumb" => null,
|
|
||||||
"table" => [],
|
|
||||||
"sublink" => []
|
|
||||||
];
|
|
||||||
|
|
||||||
|
|
||||||
|
/*
|
||||||
|
Fallback to parsing the word definitions
|
||||||
|
*/
|
||||||
$parts =
|
$parts =
|
||||||
$this->fuckhtml
|
$this->fuckhtml
|
||||||
->getElementsByClassName(
|
->getElementsByClassName(
|
||||||
|
@ -1596,12 +1595,17 @@ class google{
|
||||||
|
|
||||||
$head = $parts[0];
|
$head = $parts[0];
|
||||||
|
|
||||||
$h3 =
|
|
||||||
$this->fuckhtml
|
|
||||||
->getElementsByTagName("h3");
|
|
||||||
|
|
||||||
if(count($h3) !== 0){
|
if(count($h3) !== 0){
|
||||||
|
|
||||||
|
$table = [
|
||||||
|
"title" => null,
|
||||||
|
"description" => [],
|
||||||
|
"url" => null,
|
||||||
|
"thumb" => null,
|
||||||
|
"table" => [],
|
||||||
|
"sublink" => []
|
||||||
|
];
|
||||||
|
|
||||||
$h3 = $h3[0];
|
$h3 = $h3[0];
|
||||||
|
|
||||||
$table["title"] =
|
$table["title"] =
|
||||||
|
@ -1626,7 +1630,6 @@ class google{
|
||||||
$head
|
$head
|
||||||
)
|
)
|
||||||
];
|
];
|
||||||
}
|
|
||||||
|
|
||||||
$audio =
|
$audio =
|
||||||
$this->fuckhtml
|
$this->fuckhtml
|
||||||
|
@ -1825,6 +1828,7 @@ class google{
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
$out["answer"][] = $table;
|
$out["answer"][] = $table;
|
||||||
}
|
}
|
||||||
|
|
38
settings.php
38
settings.php
|
@ -70,10 +70,10 @@ $settings = [
|
||||||
"value" => "brave",
|
"value" => "brave",
|
||||||
"text" => "Brave"
|
"text" => "Brave"
|
||||||
],
|
],
|
||||||
[
|
//[
|
||||||
"value" => "google",
|
// "value" => "google",
|
||||||
"text" => "Google"
|
// "text" => "Google"
|
||||||
],
|
//],
|
||||||
[
|
[
|
||||||
"value" => "mojeek",
|
"value" => "mojeek",
|
||||||
"text" => "Mojeek"
|
"text" => "Mojeek"
|
||||||
|
@ -99,11 +99,11 @@ $settings = [
|
||||||
[
|
[
|
||||||
"value" => "yandex",
|
"value" => "yandex",
|
||||||
"text" => "Yandex"
|
"text" => "Yandex"
|
||||||
],
|
]//,
|
||||||
[
|
//[
|
||||||
"value" => "google",
|
// "value" => "google",
|
||||||
"text" => "Google"
|
// "text" => "Google"
|
||||||
]
|
//]
|
||||||
]
|
]
|
||||||
],
|
],
|
||||||
[
|
[
|
||||||
|
@ -117,11 +117,11 @@ $settings = [
|
||||||
[
|
[
|
||||||
"value" => "ddg",
|
"value" => "ddg",
|
||||||
"text" => "DuckDuckGo"
|
"text" => "DuckDuckGo"
|
||||||
],
|
]//,
|
||||||
[
|
//[
|
||||||
"value" => "google",
|
// "value" => "google",
|
||||||
"text" => "Google"
|
// "text" => "Google"
|
||||||
]
|
//]
|
||||||
]
|
]
|
||||||
],
|
],
|
||||||
[
|
[
|
||||||
|
@ -136,10 +136,10 @@ $settings = [
|
||||||
"value" => "brave",
|
"value" => "brave",
|
||||||
"text" => "Brave"
|
"text" => "Brave"
|
||||||
],
|
],
|
||||||
[
|
//[
|
||||||
"value" => "google",
|
// "value" => "google",
|
||||||
"text" => "Google"
|
// "text" => "Google"
|
||||||
],
|
//],
|
||||||
[
|
[
|
||||||
"value" => "mojeek",
|
"value" => "mojeek",
|
||||||
"text" => "Mojeek"
|
"text" => "Mojeek"
|
||||||
|
@ -219,7 +219,7 @@ echo
|
||||||
'<head>' .
|
'<head>' .
|
||||||
'<meta http-equiv="Content-Type" content="text/html;charset=utf-8">' .
|
'<meta http-equiv="Content-Type" content="text/html;charset=utf-8">' .
|
||||||
'<title>Settings</title>' .
|
'<title>Settings</title>' .
|
||||||
'<link rel="stylesheet" href="/static/style.css">' .
|
'<link rel="stylesheet" href="/static/style.css?v2">' .
|
||||||
'<meta name="viewport" content="width=device-width,initial-scale=1">' .
|
'<meta name="viewport" content="width=device-width,initial-scale=1">' .
|
||||||
'<meta name="robots" content="index,follow">' .
|
'<meta name="robots" content="index,follow">' .
|
||||||
'<link rel="icon" type="image/x-icon" href="/favicon.ico">' .
|
'<link rel="icon" type="image/x-icon" href="/favicon.ico">' .
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
<head>
|
<head>
|
||||||
<meta http-equiv="Content-Type" content="text/html;charset=utf-8">
|
<meta http-equiv="Content-Type" content="text/html;charset=utf-8">
|
||||||
<title>{%title%}</title>
|
<title>{%title%}</title>
|
||||||
<link rel="stylesheet" href="/static/style.css">
|
<link rel="stylesheet" href="/static/style.css?v2">
|
||||||
<meta name="viewport" content="width=device-width,initial-scale=1">
|
<meta name="viewport" content="width=device-width,initial-scale=1">
|
||||||
<meta name="robots" content="{%index%}index,{%index%}follow">
|
<meta name="robots" content="{%index%}index,{%index%}follow">
|
||||||
<link rel="icon" type="image/x-icon" href="/favicon.ico">
|
<link rel="icon" type="image/x-icon" href="/favicon.ico">
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
<meta http-equiv="Content-Type" content="text/html;charset=utf-8">
|
<meta http-equiv="Content-Type" content="text/html;charset=utf-8">
|
||||||
<title>4get</title>
|
<title>4get</title>
|
||||||
<meta name="viewport" content="width=device-width,initial-scale=1">
|
<meta name="viewport" content="width=device-width,initial-scale=1">
|
||||||
<link rel="stylesheet" href="/static/style.css">
|
<link rel="stylesheet" href="/static/style.css?v2">
|
||||||
<meta name="robots" content="index,follow">
|
<meta name="robots" content="index,follow">
|
||||||
<link rel="icon" type="image/x-icon" href="/favicon.ico">
|
<link rel="icon" type="image/x-icon" href="/favicon.ico">
|
||||||
<meta name="description" content="4get.ca: They live in our walls!">
|
<meta name="description" content="4get.ca: They live in our walls!">
|
||||||
|
@ -31,6 +31,6 @@
|
||||||
Report a problem: <a href="https://lolcat.ca/contact">lolcat.ca/contact</a>
|
Report a problem: <a href="https://lolcat.ca/contact">lolcat.ca/contact</a>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<script src="/static/client.js"></script>
|
<script src="/static/client.js?v2"></script>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|
|
@ -2,6 +2,6 @@
|
||||||
{%images%}
|
{%images%}
|
||||||
</div>
|
</div>
|
||||||
{%nextpage%}
|
{%nextpage%}
|
||||||
<script src="/static/client.js"></script>
|
<script src="/static/client.js?v2"></script>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|
|
@ -11,6 +11,6 @@
|
||||||
{%left%}
|
{%left%}
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<script src="/static/client.js"></script>
|
<script src="/static/client.js?v2"></script>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|
Loading…
Reference in a new issue