
- NOTICE: config.default.php has changed, re-create your config.php!! - [fix] No longer caches empty results - [fix] No longer make a request if the search query is empty - [fix] Movie highlight/box office cache now works - [fix] Language selector for Qwant, Wikipedia and Duckduckgo - [fix] Season and Episode filter for tv show searches - [fix] Safe search filter now actually works - [fix] Magnet Search category exclusion filter now actually works - [fix] Image size filter works more reliably - [fix] Handling of doublequotes in search queries - [fix] Search sources now show result amounts accurately - [fix] Old cache files are now actually deleted when expired - [fix] Search tabs not properly centered on smaller screens - [new] Box Office page with latest/new downloads from a few supported torrent websites - [new] News page with the latest news from major outlets - [new] Popup with movie info and download links for YTS Movie Highlights - [new] CSS colorschemes configurable in config.php - [new] Easily share magnet links with other Goosle users - [new] Search results from Quant API - [new] Search results from Brave - [new] Image results from Qwant Image API - [new] News results from Hackernews - [new] News results from Yahoo! News - [new] News results from Brave News - [new] News results from Qwant News API - [new] Magnet results from Sukebei.nyaa.si - [new] Special search for IP Lookups via ipify (Search for "ip" or "myip") - [new] Safe search switch for Yahoo! Images - [new] Image size switch for Qwant Images - [new] Merge missing magnet meta data from duplicate results if it doesn't already exist in the matched previous result - [new] Detect meta data for Magnet Search results such as sound and video quality. - [tweak] Cache ttl is now in hours (was minutes) - [tweak] Optimizations in CSS, HTML separators and more - [tweak] Moved icons into CSS so they can be colored using colorschemes - [tweak] Better handling of image results - [tweak] Better handling of empty/incomplete results for all engines - [tweak] Better handling of empty/missing meta data for all magnet engines - [tweak] Better category detection for Limetorrent magnets - [tweak] Raised Magnet search limit to 200 (was 50) - [tweak] Raised Wikipedia search limit to 20 (was 10) - [tweak] Hide magnet results with 0 seeders by default - [tweak] Uniform array formatting for all engines - [tweak] Consistent use of single-quotes and double-qoutes - [tweak] File size string conversion and formatting for all image and magnet engines - [tweak] Update checks are now done weekly(ish) via the Cron job - [tweak] Updated .htaccess caching rules - [removed] CSS for 320px viewport
70 lines
No EOL
2.7 KiB
PHP
70 lines
No EOL
2.7 KiB
PHP
<?php
|
|
if(!defined('ABSPATH')) define('ABSPATH', $_SERVER['DOCUMENT_ROOT'] . '/');
|
|
date_default_timezone_set('UTC');
|
|
|
|
require ABSPATH.'functions/tools.php';
|
|
require ABSPATH.'functions/tools-update.php';
|
|
|
|
$opts = load_opts();
|
|
$auth = (isset($_GET['a'])) ? sanitize($_GET['a']) : $opts->user_auth;
|
|
/* ------------------------------------------------------------------------------------
|
|
* Goosle - The fast, privacy oriented search tool that just works.
|
|
*
|
|
* COPYRIGHT NOTICE
|
|
* Copyright 2023-2024 Arnan de Gans. All Rights Reserved.
|
|
*
|
|
* COPYRIGHT NOTICES AND ALL THE COMMENTS SHOULD REMAIN INTACT.
|
|
* By using this code you agree to indemnify Arnan de Gans from any
|
|
* liability that might arise from its use.
|
|
---------------------------------------------------------------------------------------
|
|
* Includes:
|
|
* - Checking for updates.
|
|
* - Clearing out old cached results when using the file cache.
|
|
* - Renewing access token for Openverse (Expires every 12 hours)
|
|
------------------------------------------------------------------------------------ */
|
|
|
|
if(verify_hash($opts->hash_auth, $opts->hash, $auth)) {
|
|
// Check for updates
|
|
check_update();
|
|
echo "Update cached updated!<br />";
|
|
|
|
// Clear out old cached files?
|
|
if($opts->cache_type == 'file') {
|
|
delete_cached_results($opts->cache_time);
|
|
|
|
echo "Expired file cache results deleted!<br />";
|
|
}
|
|
|
|
// Possibly renew the Openverse access token
|
|
if($opts->enable_image_search == 'on' && $opts->enable_openverse == 'on') {
|
|
$token_file = ABSPATH.'cache/token.data';
|
|
|
|
if(is_file($token_file)) {
|
|
$tokens = unserialize(file_get_contents($token_file));
|
|
$registration = $tokens['openverse'];
|
|
|
|
// Is the token expired?
|
|
if($registration['expires'] < time()) {
|
|
$new_token = do_curl_request(
|
|
'https://api.openverse.org/v1/auth_tokens/token/', // (string) Where?
|
|
array('Accept: application/json, */*;q=0.8', 'User-Agent: '.$opts->user_agents[0].';', 'Authorization: Bearer'.$registration['client_id']), // (array) Headers
|
|
'post', // (string) post/get
|
|
array('grant_type' => 'client_credentials', 'client_id' => $registration['client_id'], 'client_secret' => $registration['client_secret']) // (assoc array) Post body
|
|
);
|
|
$new_token = json_decode($new_token, true);
|
|
|
|
$new_token['expires_in'] = time() + ($new_token['expires_in'] - 3600);
|
|
|
|
oauth_store_token($token_file, 'openverse', array('client_id' => $registration['client_id'], 'client_secret' => $registration['client_secret'], 'access_token' => $new_token['access_token'], 'expires' => $new_token['expires_in']));
|
|
|
|
echo "New Openverse token stored!<br />";
|
|
}
|
|
}
|
|
}
|
|
echo "No errors on this page? We're done!<br />";
|
|
} else {
|
|
echo "Unauthorized!";
|
|
}
|
|
|
|
exit;
|
|
?>
|