mirror of
https://github.com/pi-hole/pi-hole
synced 2024-12-23 07:18:07 +00:00
Merge pull request #1913 from pi-hole/tweak/GravityFunctionNames
proposed gravity function renames
This commit is contained in:
commit
6c54bf036c
32
gravity.sh
32
gravity.sh
@ -68,7 +68,7 @@ if [[ -r "${piholeDir}/pihole.conf" ]]; then
|
|||||||
fi
|
fi
|
||||||
|
|
||||||
# Determine if DNS resolution is available before proceeding
|
# Determine if DNS resolution is available before proceeding
|
||||||
gravity_DNSLookup() {
|
gravity_CheckDNSResolutionAvailable() {
|
||||||
local lookupDomain="pi.hole"
|
local lookupDomain="pi.hole"
|
||||||
|
|
||||||
# Determine if $localList does not exist
|
# Determine if $localList does not exist
|
||||||
@ -120,11 +120,11 @@ gravity_DNSLookup() {
|
|||||||
done
|
done
|
||||||
|
|
||||||
# Try again
|
# Try again
|
||||||
gravity_DNSLookup
|
gravity_CheckDNSResolutionAvailable
|
||||||
}
|
}
|
||||||
|
|
||||||
# Retrieve blocklist URLs and parse domains from adlists.list
|
# Retrieve blocklist URLs and parse domains from adlists.list
|
||||||
gravity_Collapse() {
|
gravity_GetBlocklistUrls() {
|
||||||
echo -e " ${INFO} ${COL_BOLD}Neutrino emissions detected${COL_NC}..."
|
echo -e " ${INFO} ${COL_BOLD}Neutrino emissions detected${COL_NC}..."
|
||||||
|
|
||||||
# Determine if adlists file needs handling
|
# Determine if adlists file needs handling
|
||||||
@ -165,7 +165,7 @@ gravity_Collapse() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
# Define options for when retrieving blocklists
|
# Define options for when retrieving blocklists
|
||||||
gravity_Supernova() {
|
gravity_SetDownloadOptions() {
|
||||||
local url domain agent cmd_ext str
|
local url domain agent cmd_ext str
|
||||||
|
|
||||||
echo ""
|
echo ""
|
||||||
@ -190,7 +190,7 @@ gravity_Supernova() {
|
|||||||
|
|
||||||
if [[ "${skipDownload}" == false ]]; then
|
if [[ "${skipDownload}" == false ]]; then
|
||||||
echo -e " ${INFO} Target: ${domain} (${url##*/})"
|
echo -e " ${INFO} Target: ${domain} (${url##*/})"
|
||||||
gravity_Pull "${url}" "${cmd_ext}" "${agent}"
|
gravity_DownloadBlocklistFromUrl "${url}" "${cmd_ext}" "${agent}"
|
||||||
echo ""
|
echo ""
|
||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
@ -198,7 +198,7 @@ gravity_Supernova() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
# Download specified URL and perform checks on HTTP status and file content
|
# Download specified URL and perform checks on HTTP status and file content
|
||||||
gravity_Pull() {
|
gravity_DownloadBlocklistFromUrl() {
|
||||||
local url="${1}" cmd_ext="${2}" agent="${3}" heisenbergCompensator="" patternBuffer str httpCode success=""
|
local url="${1}" cmd_ext="${2}" agent="${3}" heisenbergCompensator="" patternBuffer str httpCode success=""
|
||||||
|
|
||||||
# Create temp file to store content on disk instead of RAM
|
# Create temp file to store content on disk instead of RAM
|
||||||
@ -365,7 +365,7 @@ gravity_ParseFileIntoDomains() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
# Create (unfiltered) "Matter and Light" consolidated list
|
# Create (unfiltered) "Matter and Light" consolidated list
|
||||||
gravity_Schwarzschild() {
|
gravity_ConsolidateDownloadedBlocklists() {
|
||||||
local str lastLine
|
local str lastLine
|
||||||
|
|
||||||
str="Consolidating blocklists"
|
str="Consolidating blocklists"
|
||||||
@ -393,7 +393,7 @@ gravity_Schwarzschild() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
# Parse consolidated list into (filtered, unique) domains-only format
|
# Parse consolidated list into (filtered, unique) domains-only format
|
||||||
gravity_Filter() {
|
gravity_SortAndFilterConsolidatedList() {
|
||||||
local str num
|
local str num
|
||||||
|
|
||||||
str="Extracting domains from blocklists"
|
str="Extracting domains from blocklists"
|
||||||
@ -418,7 +418,7 @@ gravity_Filter() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
# Whitelist unique blocklist domain sources
|
# Whitelist unique blocklist domain sources
|
||||||
gravity_WhitelistBLD() {
|
gravity_WhitelistBlocklistSourceUrls() {
|
||||||
local uniqDomains str
|
local uniqDomains str
|
||||||
|
|
||||||
echo ""
|
echo ""
|
||||||
@ -563,7 +563,7 @@ gravity_Cleanup() {
|
|||||||
rm ${piholeDir}/*.tmp 2> /dev/null
|
rm ${piholeDir}/*.tmp 2> /dev/null
|
||||||
rm /tmp/*.phgpb 2> /dev/null
|
rm /tmp/*.phgpb 2> /dev/null
|
||||||
|
|
||||||
# Ensure this function only runs when gravity_Supernova() has completed
|
# Ensure this function only runs when gravity_SetDownloadOptions() has completed
|
||||||
if [[ "${gravity_Blackbody:-}" == true ]]; then
|
if [[ "${gravity_Blackbody:-}" == true ]]; then
|
||||||
# Remove any unused .domains files
|
# Remove any unused .domains files
|
||||||
for file in ${piholeDir}/*.${domainsExtension}; do
|
for file in ${piholeDir}/*.${domainsExtension}; do
|
||||||
@ -625,12 +625,12 @@ fi
|
|||||||
# Determine which functions to run
|
# Determine which functions to run
|
||||||
if [[ "${skipDownload}" == false ]]; then
|
if [[ "${skipDownload}" == false ]]; then
|
||||||
# Gravity needs to download blocklists
|
# Gravity needs to download blocklists
|
||||||
gravity_DNSLookup
|
gravity_CheckDNSResolutionAvailable
|
||||||
gravity_Collapse
|
gravity_GetBlocklistUrls
|
||||||
gravity_Supernova
|
gravity_SetDownloadOptions
|
||||||
gravity_Schwarzschild
|
gravity_ConsolidateDownloadedBlocklists
|
||||||
gravity_Filter
|
gravity_SortAndFilterConsolidatedList
|
||||||
gravity_WhitelistBLD
|
gravity_WhitelistBlocklistSourceUrls
|
||||||
else
|
else
|
||||||
# Gravity needs to modify Blacklist/Whitelist/Wildcards
|
# Gravity needs to modify Blacklist/Whitelist/Wildcards
|
||||||
echo -e " ${INFO} Using cached Event Horizon list..."
|
echo -e " ${INFO} Using cached Event Horizon list..."
|
||||||
|
Loading…
Reference in New Issue
Block a user