mirror of
https://github.com/glanceapp/glance.git
synced 2024-11-22 00:13:55 +01:00
Merge pull request #224 from SimJunYou/piholePrivacy
DNS Stats widget - fix Pihole privacy edge case
This commit is contained in:
commit
07fe5b3cb1
@ -1,6 +1,7 @@
|
|||||||
package feed
|
package feed
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
"encoding/json"
|
||||||
"errors"
|
"errors"
|
||||||
"log/slog"
|
"log/slog"
|
||||||
"net/http"
|
"net/http"
|
||||||
@ -9,13 +10,33 @@ import (
|
|||||||
)
|
)
|
||||||
|
|
||||||
type piholeStatsResponse struct {
|
type piholeStatsResponse struct {
|
||||||
TotalQueries int `json:"dns_queries_today"`
|
TotalQueries int `json:"dns_queries_today"`
|
||||||
QueriesSeries map[int64]int `json:"domains_over_time"`
|
QueriesSeries map[int64]int `json:"domains_over_time"`
|
||||||
BlockedQueries int `json:"ads_blocked_today"`
|
BlockedQueries int `json:"ads_blocked_today"`
|
||||||
BlockedSeries map[int64]int `json:"ads_over_time"`
|
BlockedSeries map[int64]int `json:"ads_over_time"`
|
||||||
BlockedPercentage float64 `json:"ads_percentage_today"`
|
BlockedPercentage float64 `json:"ads_percentage_today"`
|
||||||
TopBlockedDomains map[string]int `json:"top_ads"`
|
TopBlockedDomains piholeTopBlockedDomains `json:"top_ads"`
|
||||||
DomainsBlocked int `json:"domains_being_blocked"`
|
DomainsBlocked int `json:"domains_being_blocked"`
|
||||||
|
}
|
||||||
|
|
||||||
|
// If user has some level of privacy enabled on Pihole, `json:"top_ads"` is an empty array
|
||||||
|
// Use custom unmarshal behavior to avoid not getting the rest of the valid data when unmarshalling
|
||||||
|
type piholeTopBlockedDomains map[string]int
|
||||||
|
|
||||||
|
func (p *piholeTopBlockedDomains) UnmarshalJSON(data []byte) error {
|
||||||
|
// NOTE: do not change to piholeTopBlockedDomains type here or it will cause a stack overflow
|
||||||
|
// because of the UnmarshalJSON method getting called recursively
|
||||||
|
temp := make(map[string]int)
|
||||||
|
|
||||||
|
err := json.Unmarshal(data, &temp)
|
||||||
|
|
||||||
|
if err != nil {
|
||||||
|
*p = make(piholeTopBlockedDomains)
|
||||||
|
} else {
|
||||||
|
*p = temp
|
||||||
|
}
|
||||||
|
|
||||||
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
func FetchPiholeStats(instanceURL, token string) (*DNSStats, error) {
|
func FetchPiholeStats(instanceURL, token string) (*DNSStats, error) {
|
||||||
|
Loading…
Reference in New Issue
Block a user