You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
704 B
24 lines
704 B
<?php
|
|
|
|
require '../../includes/csrf.php';
|
|
require_once '../../includes/config.php';
|
|
|
|
if (isset($_POST['blocklist_id'])) {
|
|
$blocklist_id = $_POST['blocklist_id'];
|
|
$notracking_url = "https://raw.githubusercontent.com/notracking/hosts-blocklists/master/";
|
|
|
|
switch ($blocklist_id) {
|
|
case "notracking-hostnames":
|
|
$file = "hostnames.txt";
|
|
break;
|
|
case "notracking-domains":
|
|
$file = "domains.txt";
|
|
break;
|
|
}
|
|
$blocklist = $notracking_url . $file;
|
|
|
|
exec("sudo /etc/raspap/adblock/update_blocklist.sh $blocklist $file " .RASPI_ADBLOCK_LISTPATH, $return);
|
|
$jsonData = ['return'=>$return];
|
|
echo json_encode($jsonData);
|
|
}
|
|
|