text
stringlengths
9
39.2M
dir
stringlengths
26
295
lang
stringclasses
185 values
created_date
timestamp[us]
updated_date
timestamp[us]
repo_name
stringlengths
1
97
repo_full_name
stringlengths
7
106
star
int64
1k
183k
len_tokens
int64
1
13.8M
```yaml http: address: 127.0.0.1:3000 session_ttl: 3h pprof: enabled: true port: 6060 users: - name: testuser password: testpassword dns: bind_hosts: - 127.0.0.1 port: 53 parental_sensitivity: 0 upstream_dns: - tls://1.1.1.1 - tls://1.0.0.1 - quic://8.8.8.8:784 bootstrap_dns: - 8.8.8...
/content/code_sandbox/internal/configmigrate/testdata/TestMigrateConfig_Migrate/v26/output.yml
yaml
2016-07-06T10:31:47
2024-08-16T18:17:06
AdGuardHome
AdguardTeam/AdGuardHome
24,082
765
```go //go:build !linux package ipset import ( "github.com/AdguardTeam/AdGuardHome/internal/aghos" ) func newManager(_ []string) (mgr Manager, err error) { return nil, aghos.Unsupported("ipset") } ```
/content/code_sandbox/internal/ipset/ipset_others.go
go
2016-07-06T10:31:47
2024-08-16T18:17:06
AdGuardHome
AdguardTeam/AdGuardHome
24,082
58
```go //go:build linux package ipset import ( "net" "strings" "testing" "github.com/AdguardTeam/golibs/errors" "github.com/digineo/go-ipset/v2" "github.com/mdlayher/netlink" "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" "github.com/ti-mo/netfilter" ) // fakeConn is a fake ipset...
/content/code_sandbox/internal/ipset/ipset_linux_internal_test.go
go
2016-07-06T10:31:47
2024-08-16T18:17:06
AdGuardHome
AdguardTeam/AdGuardHome
24,082
1,190
```go package filtering // SafeSearch interface describes a service for search engines hosts rewrites. type SafeSearch interface { // CheckHost checks host with safe search filter. CheckHost must be safe // for concurrent use. qtype must be either [dns.TypeA] or [dns.TypeAAAA]. CheckHost(host string, qtype uint16...
/content/code_sandbox/internal/filtering/safesearch.go
go
2016-07-06T10:31:47
2024-08-16T18:17:06
AdGuardHome
AdguardTeam/AdGuardHome
24,082
432
```go //go:build linux package ipset import ( "bytes" "fmt" "net" "strings" "sync" "github.com/AdguardTeam/golibs/container" "github.com/AdguardTeam/golibs/errors" "github.com/AdguardTeam/golibs/log" "github.com/digineo/go-ipset/v2" "github.com/mdlayher/netlink" "github.com/ti-mo/netfilter" "golang.org/x...
/content/code_sandbox/internal/ipset/ipset_linux.go
go
2016-07-06T10:31:47
2024-08-16T18:17:06
AdGuardHome
AdguardTeam/AdGuardHome
24,082
4,106
```go package filtering import ( "encoding/json" "net/http" "github.com/AdguardTeam/AdGuardHome/internal/aghhttp" ) // handleSafeSearchEnable is the handler for POST /control/safesearch/enable // HTTP API. // // Deprecated: Use handleSafeSearchSettings. func (d *DNSFilter) handleSafeSearchEnable(w http.ResponseWr...
/content/code_sandbox/internal/filtering/safesearchhttp.go
go
2016-07-06T10:31:47
2024-08-16T18:17:06
AdGuardHome
AdguardTeam/AdGuardHome
24,082
450
```go package filtering import ( "fmt" "net/netip" "slices" "strings" "github.com/AdguardTeam/golibs/errors" "github.com/AdguardTeam/golibs/log" "github.com/miekg/dns" ) // Legacy DNS rewrites // LegacyRewrite is a single legacy DNS rewrite record. // // Instances of *LegacyRewrite must never be nil. type Le...
/content/code_sandbox/internal/filtering/rewrites.go
go
2016-07-06T10:31:47
2024-08-16T18:17:06
AdGuardHome
AdguardTeam/AdGuardHome
24,082
1,602
```go package filtering import ( "fmt" "io" "net/http" "os" "path/filepath" "slices" "strconv" "strings" "time" "github.com/AdguardTeam/AdGuardHome/internal/aghrenameio" "github.com/AdguardTeam/AdGuardHome/internal/filtering/rulelist" "github.com/AdguardTeam/golibs/container" "github.com/AdguardTeam/goli...
/content/code_sandbox/internal/filtering/filter.go
go
2016-07-06T10:31:47
2024-08-16T18:17:06
AdGuardHome
AdguardTeam/AdGuardHome
24,082
4,412
```go package filtering import ( "github.com/AdguardTeam/urlfilter" "github.com/AdguardTeam/urlfilter/rules" "github.com/miekg/dns" ) // DNSRewriteResult is the result of application of $dnsrewrite rules. type DNSRewriteResult struct { Response DNSRewriteResultResponse `json:",omitempty"` RCode rules.RCode ...
/content/code_sandbox/internal/filtering/dnsrewrite.go
go
2016-07-06T10:31:47
2024-08-16T18:17:06
AdGuardHome
AdguardTeam/AdGuardHome
24,082
722
```go package filtering import ( "fmt" "sync/atomic" "github.com/AdguardTeam/AdGuardHome/internal/filtering/rulelist" "github.com/AdguardTeam/golibs/container" "github.com/AdguardTeam/golibs/log" ) // idGenerator generates filtering-list IDs in a way broadly compatible with the // legacy approach of AdGuard Hom...
/content/code_sandbox/internal/filtering/idgenerator.go
go
2016-07-06T10:31:47
2024-08-16T18:17:06
AdGuardHome
AdguardTeam/AdGuardHome
24,082
443
```go package filtering import ( "testing" "github.com/AdguardTeam/AdGuardHome/internal/aghalg" "github.com/AdguardTeam/AdGuardHome/internal/filtering/rulelist" "github.com/stretchr/testify/assert" ) func TestIDGenerator_Fix(t *testing.T) { t.Parallel() testCases := []struct { name string in []FilterYAM...
/content/code_sandbox/internal/filtering/idgenerator_internal_test.go
go
2016-07-06T10:31:47
2024-08-16T18:17:06
AdGuardHome
AdguardTeam/AdGuardHome
24,082
465
```go package filtering_test import ( "bytes" "encoding/json" "io" "net/http" "net/http/httptest" "testing" "time" "github.com/AdguardTeam/AdGuardHome/internal/filtering" "github.com/AdguardTeam/golibs/testutil" "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" ) // TODO(d.kolyshe...
/content/code_sandbox/internal/filtering/rewritehttp_test.go
go
2016-07-06T10:31:47
2024-08-16T18:17:06
AdGuardHome
AdguardTeam/AdGuardHome
24,082
1,728
```go package filtering import ( "bytes" "fmt" "net/netip" "testing" "github.com/AdguardTeam/AdGuardHome/internal/aghtest" "github.com/AdguardTeam/AdGuardHome/internal/filtering/hashprefix" "github.com/AdguardTeam/golibs/log" "github.com/AdguardTeam/golibs/netutil" "github.com/AdguardTeam/golibs/testutil" "...
/content/code_sandbox/internal/filtering/filtering_test.go
go
2016-07-06T10:31:47
2024-08-16T18:17:06
AdGuardHome
AdguardTeam/AdGuardHome
24,082
5,451
```go package filtering import ( "fmt" "net/netip" "github.com/AdguardTeam/AdGuardHome/internal/filtering/rulelist" "github.com/AdguardTeam/golibs/hostsfile" "github.com/AdguardTeam/golibs/log" "github.com/AdguardTeam/golibs/netutil" "github.com/AdguardTeam/urlfilter/rules" "github.com/miekg/dns" ) // matchS...
/content/code_sandbox/internal/filtering/hosts.go
go
2016-07-06T10:31:47
2024-08-16T18:17:06
AdGuardHome
AdguardTeam/AdGuardHome
24,082
669
```go package filtering import ( "net" "net/http" "net/url" "os" "path/filepath" "testing" "time" "github.com/AdguardTeam/AdGuardHome/internal/aghhttp" "github.com/AdguardTeam/golibs/testutil" "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" ) // testTimeout is the common timeout...
/content/code_sandbox/internal/filtering/filter_test.go
go
2016-07-06T10:31:47
2024-08-16T18:17:06
AdGuardHome
AdguardTeam/AdGuardHome
24,082
1,155
```go package filtering import ( "fmt" "net/netip" "testing" "testing/fstest" "github.com/AdguardTeam/AdGuardHome/internal/aghnet" "github.com/AdguardTeam/AdGuardHome/internal/aghtest" "github.com/AdguardTeam/AdGuardHome/internal/filtering/rulelist" "github.com/AdguardTeam/golibs/testutil" "github.com/Adguar...
/content/code_sandbox/internal/filtering/hosts_test.go
go
2016-07-06T10:31:47
2024-08-16T18:17:06
AdGuardHome
AdguardTeam/AdGuardHome
24,082
1,676
```go package filtering import ( "encoding/json" "fmt" "net/http" "net/netip" "net/url" "os" "path/filepath" "slices" "sync" "time" "github.com/AdguardTeam/AdGuardHome/internal/aghhttp" "github.com/AdguardTeam/AdGuardHome/internal/filtering/rulelist" "github.com/AdguardTeam/golibs/errors" "github.com/Ad...
/content/code_sandbox/internal/filtering/http.go
go
2016-07-06T10:31:47
2024-08-16T18:17:06
AdGuardHome
AdguardTeam/AdGuardHome
24,082
4,212
```go // Package filtering implements a DNS request and response filter. package filtering import ( "context" "fmt" "io/fs" "net" "net/http" "net/netip" "os" "path/filepath" "runtime" "runtime/debug" "slices" "strings" "sync" "sync/atomic" "time" "github.com/AdguardTeam/AdGuardHome/internal/aghhttp" ...
/content/code_sandbox/internal/filtering/filtering.go
go
2016-07-06T10:31:47
2024-08-16T18:17:06
AdGuardHome
AdguardTeam/AdGuardHome
24,082
8,472
```go package filtering import ( "net/netip" "path" "testing" "github.com/AdguardTeam/golibs/netutil" "github.com/miekg/dns" "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" ) func TestDNSFilter_CheckHostRules_dnsrewrite(t *testing.T) { const text = ` |cname^$dnsrewrite=new-cname |...
/content/code_sandbox/internal/filtering/dnsrewrite_test.go
go
2016-07-06T10:31:47
2024-08-16T18:17:06
AdGuardHome
AdguardTeam/AdGuardHome
24,082
1,674
```go package filtering import ( "encoding/json" "net/http" "slices" "github.com/AdguardTeam/AdGuardHome/internal/aghhttp" "github.com/AdguardTeam/golibs/log" ) // TODO(d.kolyshev): Use [rewrite.Item] instead. type rewriteEntryJSON struct { Domain string `json:"domain"` Answer string `json:"answer"` } // han...
/content/code_sandbox/internal/filtering/rewritehttp.go
go
2016-07-06T10:31:47
2024-08-16T18:17:06
AdGuardHome
AdguardTeam/AdGuardHome
24,082
1,121
```go package filtering import ( "encoding/json" "fmt" "net/http" "slices" "time" "github.com/AdguardTeam/AdGuardHome/internal/aghhttp" "github.com/AdguardTeam/AdGuardHome/internal/filtering/rulelist" "github.com/AdguardTeam/AdGuardHome/internal/schedule" "github.com/AdguardTeam/golibs/log" "github.com/Adgu...
/content/code_sandbox/internal/filtering/blocked.go
go
2016-07-06T10:31:47
2024-08-16T18:17:06
AdGuardHome
AdguardTeam/AdGuardHome
24,082
1,407
```go package filtering import ( "bytes" "encoding/json" "net/http" "net/http/httptest" "testing" "time" "github.com/AdguardTeam/golibs/testutil" "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" ) func TestDNSFilter_handleFilteringSetURL(t *testing.T) { filtersDir := t.TempDir() ...
/content/code_sandbox/internal/filtering/http_test.go
go
2016-07-06T10:31:47
2024-08-16T18:17:06
AdGuardHome
AdguardTeam/AdGuardHome
24,082
2,063
```go package filtering import ( "net" "net/netip" "testing" "github.com/miekg/dns" "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" ) // TODO(e.burkov): All the tests in this file may and should me merged together. func TestRewrites(t *testing.T) { d, _ := newForTest(t, nil, nil) ...
/content/code_sandbox/internal/filtering/rewrites_test.go
go
2016-07-06T10:31:47
2024-08-16T18:17:06
AdGuardHome
AdguardTeam/AdGuardHome
24,082
3,164
```go // Package hashprefix used for safe browsing and parent control. package hashprefix import ( "crypto/sha256" "encoding/hex" "fmt" "slices" "strings" "time" "github.com/AdguardTeam/dnsproxy/upstream" "github.com/AdguardTeam/golibs/cache" "github.com/AdguardTeam/golibs/log" "github.com/AdguardTeam/golib...
/content/code_sandbox/internal/filtering/hashprefix/hashprefix.go
go
2016-07-06T10:31:47
2024-08-16T18:17:06
AdGuardHome
AdguardTeam/AdGuardHome
24,082
1,509
```go package hashprefix import ( "testing" "time" "github.com/stretchr/testify/assert" ) func TestCacheItem(t *testing.T) { item := &cacheItem{ expiry: time.Unix(0x01_23_45_67_89_AB_CD_EF, 0), hashes: []hostnameHash{{ 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, ...
/content/code_sandbox/internal/filtering/hashprefix/cache_internal_test.go
go
2016-07-06T10:31:47
2024-08-16T18:17:06
AdGuardHome
AdguardTeam/AdGuardHome
24,082
834
```go package hashprefix import ( "crypto/sha256" "encoding/hex" "slices" "strings" "testing" "time" "github.com/AdguardTeam/AdGuardHome/internal/aghtest" "github.com/AdguardTeam/golibs/cache" "github.com/miekg/dns" "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" ) const ( cach...
/content/code_sandbox/internal/filtering/hashprefix/hashprefix_internal_test.go
go
2016-07-06T10:31:47
2024-08-16T18:17:06
AdGuardHome
AdguardTeam/AdGuardHome
24,082
1,750
```go package hashprefix import ( "encoding/binary" "time" "github.com/AdguardTeam/golibs/log" ) // expirySize is the size of expiry in cacheItem. const expirySize = 8 // cacheItem represents an item that we will store in the cache. type cacheItem struct { // expiry is the time when cacheItem will expire. expi...
/content/code_sandbox/internal/filtering/hashprefix/cache.go
go
2016-07-06T10:31:47
2024-08-16T18:17:06
AdGuardHome
AdguardTeam/AdGuardHome
24,082
772
```go package rulelist import ( "bytes" "context" "fmt" "io" "net/http" "net/url" "os" "path/filepath" "time" "github.com/AdguardTeam/AdGuardHome/internal/aghrenameio" "github.com/AdguardTeam/golibs/errors" "github.com/AdguardTeam/golibs/ioutil" "github.com/AdguardTeam/urlfilter/filterlist" "github.com/...
/content/code_sandbox/internal/filtering/rulelist/filter.go
go
2016-07-06T10:31:47
2024-08-16T18:17:06
AdGuardHome
AdguardTeam/AdGuardHome
24,082
2,228
```go package rulelist import "github.com/AdguardTeam/golibs/errors" // ErrHTML is returned by [Parser.Parse] if the data is likely to be HTML. // // TODO(a.garipov): This error is currently returned to the UI. Stop that and // make it all-lowercase. const ErrHTML errors.Error = "data is HTML, not plain text" ```
/content/code_sandbox/internal/filtering/rulelist/error.go
go
2016-07-06T10:31:47
2024-08-16T18:17:06
AdGuardHome
AdguardTeam/AdGuardHome
24,082
83
```go package rulelist import ( "context" "fmt" "net/http" "sync" "github.com/AdguardTeam/golibs/errors" "github.com/AdguardTeam/golibs/log" "github.com/AdguardTeam/urlfilter" "github.com/AdguardTeam/urlfilter/filterlist" "github.com/c2h5oh/datasize" ) // Engine is a single DNS filter based on one or more r...
/content/code_sandbox/internal/filtering/rulelist/engine.go
go
2016-07-06T10:31:47
2024-08-16T18:17:06
AdGuardHome
AdguardTeam/AdGuardHome
24,082
1,722
```go package rulelist_test import ( "bufio" "bytes" "strings" "testing" "github.com/AdguardTeam/AdGuardHome/internal/filtering/rulelist" "github.com/AdguardTeam/golibs/errors" "github.com/AdguardTeam/golibs/testutil" "github.com/AdguardTeam/golibs/testutil/fakeio" "github.com/stretchr/testify/assert" "gith...
/content/code_sandbox/internal/filtering/rulelist/parser_test.go
go
2016-07-06T10:31:47
2024-08-16T18:17:06
AdGuardHome
AdguardTeam/AdGuardHome
24,082
1,989
```go package rulelist_test import ( "net/http" "net/url" "os" "path/filepath" "testing" "github.com/AdguardTeam/AdGuardHome/internal/filtering/rulelist" "github.com/AdguardTeam/golibs/testutil" "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" ) func TestFilter_Refresh(t *testing.T...
/content/code_sandbox/internal/filtering/rulelist/filter_test.go
go
2016-07-06T10:31:47
2024-08-16T18:17:06
AdGuardHome
AdguardTeam/AdGuardHome
24,082
574
```go package rulelist import ( "fmt" "strings" "sync" "github.com/AdguardTeam/urlfilter" "github.com/AdguardTeam/urlfilter/filterlist" ) // TextEngine is a single DNS filter based on a list of rules in text form. type TextEngine struct { // mu protects engine and storage. mu *sync.RWMutex // engine is the ...
/content/code_sandbox/internal/filtering/rulelist/textengine.go
go
2016-07-06T10:31:47
2024-08-16T18:17:06
AdGuardHome
AdguardTeam/AdGuardHome
24,082
600
```go package rulelist_test import ( "io" "net/http" "net/http/httptest" "net/url" "os" "path/filepath" "sync/atomic" "testing" "time" "github.com/AdguardTeam/AdGuardHome/internal/filtering/rulelist" "github.com/AdguardTeam/golibs/testutil" "github.com/stretchr/testify/require" ) func TestMain(m *testing...
/content/code_sandbox/internal/filtering/rulelist/rulelist_test.go
go
2016-07-06T10:31:47
2024-08-16T18:17:06
AdGuardHome
AdguardTeam/AdGuardHome
24,082
831
```go package rulelist import ( "bufio" "bytes" "fmt" "hash/crc32" "io" "slices" "github.com/AdguardTeam/golibs/errors" ) // Parser is a filtering-rule parser that collects data, such as the checksum // and the title, as well as counts rules and removes comments. type Parser struct { title string rules...
/content/code_sandbox/internal/filtering/rulelist/parser.go
go
2016-07-06T10:31:47
2024-08-16T18:17:06
AdGuardHome
AdguardTeam/AdGuardHome
24,082
1,451
```go package rulelist_test import ( "net/http" "testing" "github.com/AdguardTeam/AdGuardHome/internal/filtering/rulelist" "github.com/AdguardTeam/golibs/testutil" "github.com/AdguardTeam/urlfilter" "github.com/miekg/dns" "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" ) func TestE...
/content/code_sandbox/internal/filtering/rulelist/engine_test.go
go
2016-07-06T10:31:47
2024-08-16T18:17:06
AdGuardHome
AdguardTeam/AdGuardHome
24,082
419
```go package rulelist_test import ( "testing" "github.com/AdguardTeam/AdGuardHome/internal/filtering/rulelist" "github.com/AdguardTeam/golibs/testutil" "github.com/AdguardTeam/urlfilter" "github.com/miekg/dns" "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" ) func TestNewTextEngine...
/content/code_sandbox/internal/filtering/rulelist/textengine_test.go
go
2016-07-06T10:31:47
2024-08-16T18:17:06
AdGuardHome
AdguardTeam/AdGuardHome
24,082
266
```go // Package rulelist contains the implementation of the standard rule-list // filter that wraps an urlfilter filtering-engine. // // TODO(a.garipov): Add a new update worker. package rulelist import ( "fmt" "github.com/c2h5oh/datasize" "github.com/google/uuid" ) // DefaultRuleBufSize is the default length of...
/content/code_sandbox/internal/filtering/rulelist/rulelist.go
go
2016-07-06T10:31:47
2024-08-16T18:17:06
AdGuardHome
AdguardTeam/AdGuardHome
24,082
547
```go package rewrite import ( "net/netip" "testing" "github.com/AdguardTeam/golibs/netutil" "github.com/AdguardTeam/urlfilter" "github.com/AdguardTeam/urlfilter/rules" "github.com/miekg/dns" "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" ) func TestNewDefaultStorage(t *testing.T)...
/content/code_sandbox/internal/filtering/rewrite/storage_test.go
go
2016-07-06T10:31:47
2024-08-16T18:17:06
AdGuardHome
AdguardTeam/AdGuardHome
24,082
3,705
```go // Package rewrite implements DNS Rewrites storage and request matching. package rewrite import ( "fmt" "slices" "strings" "sync" "github.com/AdguardTeam/golibs/container" "github.com/AdguardTeam/golibs/log" "github.com/AdguardTeam/urlfilter" "github.com/AdguardTeam/urlfilter/filterlist" "github.com/Ad...
/content/code_sandbox/internal/filtering/rewrite/storage.go
go
2016-07-06T10:31:47
2024-08-16T18:17:06
AdGuardHome
AdguardTeam/AdGuardHome
24,082
1,658
```go package rewrite import ( "testing" "github.com/stretchr/testify/assert" ) func TestItem_equal(t *testing.T) { const ( testDomain = "example.org" testAnswer = "1.1.1.1" ) testItem := &Item{ Domain: testDomain, Answer: testAnswer, } testCases := []struct { left *Item right *Item name str...
/content/code_sandbox/internal/filtering/rewrite/item_internal_test.go
go
2016-07-06T10:31:47
2024-08-16T18:17:06
AdGuardHome
AdguardTeam/AdGuardHome
24,082
748
```go package rewrite import ( "fmt" "net/netip" "strings" "github.com/miekg/dns" ) // Item is a single DNS rewrite record. type Item struct { // Domain is the domain pattern for which this rewrite should work. Domain string `yaml:"domain"` // Answer is the IP address, canonical name, or one of the special ...
/content/code_sandbox/internal/filtering/rewrite/item.go
go
2016-07-06T10:31:47
2024-08-16T18:17:06
AdGuardHome
AdguardTeam/AdGuardHome
24,082
435
```go // Package safesearch implements safesearch host matching. package safesearch import ( "bytes" "encoding/binary" "encoding/gob" "fmt" "net/netip" "strings" "sync" "time" "github.com/AdguardTeam/AdGuardHome/internal/filtering" "github.com/AdguardTeam/AdGuardHome/internal/filtering/rulelist" "github.co...
/content/code_sandbox/internal/filtering/safesearch/safesearch.go
go
2016-07-06T10:31:47
2024-08-16T18:17:06
AdGuardHome
AdguardTeam/AdGuardHome
24,082
2,186
```go package safesearch import ( "net/netip" "testing" "time" "github.com/AdguardTeam/AdGuardHome/internal/filtering" "github.com/AdguardTeam/urlfilter/rules" "github.com/miekg/dns" "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" ) // TODO(a.garipov): Move as much of this as possi...
/content/code_sandbox/internal/filtering/safesearch/safesearch_internal_test.go
go
2016-07-06T10:31:47
2024-08-16T18:17:06
AdGuardHome
AdguardTeam/AdGuardHome
24,082
637
```go package safesearch_test import ( "context" "net" "net/netip" "testing" "time" "github.com/AdguardTeam/AdGuardHome/internal/filtering" "github.com/AdguardTeam/AdGuardHome/internal/filtering/rulelist" "github.com/AdguardTeam/AdGuardHome/internal/filtering/safesearch" "github.com/AdguardTeam/golibs/testut...
/content/code_sandbox/internal/filtering/safesearch/safesearch_test.go
go
2016-07-06T10:31:47
2024-08-16T18:17:06
AdGuardHome
AdguardTeam/AdGuardHome
24,082
1,409
```go package safesearch import _ "embed" //go:embed rules/bing.txt var bing string //go:embed rules/google.txt var google string //go:embed rules/pixabay.txt var pixabay string //go:embed rules/duckduckgo.txt var duckduckgo string //go:embed rules/ecosia.txt var ecosia string //go:embed rules/yandex.txt var yan...
/content/code_sandbox/internal/filtering/safesearch/rules.go
go
2016-07-06T10:31:47
2024-08-16T18:17:06
AdGuardHome
AdguardTeam/AdGuardHome
24,082
207
```go //go:build darwin || openbsd package aghos import ( "os" "syscall" ) func setRlimit(val uint64) (err error) { var rlim syscall.Rlimit rlim.Max = val rlim.Cur = val return syscall.Setrlimit(syscall.RLIMIT_NOFILE, &rlim) } func haveAdminRights() (bool, error) { return os.Getuid() == 0, nil } func isOpe...
/content/code_sandbox/internal/aghos/os_bsd.go
go
2016-07-06T10:31:47
2024-08-16T18:17:06
AdGuardHome
AdguardTeam/AdGuardHome
24,082
115
```go package aghos // PreCheckActionStart performs the service start action pre-check. func PreCheckActionStart() (err error) { return preCheckActionStart() } ```
/content/code_sandbox/internal/aghos/service.go
go
2016-07-06T10:31:47
2024-08-16T18:17:06
AdGuardHome
AdguardTeam/AdGuardHome
24,082
37
```go package aghos // ConfigureSyslog reroutes standard logger output to syslog. func ConfigureSyslog(serviceName string) (err error) { return configureSyslog(serviceName) } ```
/content/code_sandbox/internal/aghos/syslog.go
go
2016-07-06T10:31:47
2024-08-16T18:17:06
AdGuardHome
AdguardTeam/AdGuardHome
24,082
39
```go //go:build windows package aghos import ( "strings" "github.com/AdguardTeam/golibs/log" "golang.org/x/sys/windows" "golang.org/x/sys/windows/svc/eventlog" ) type eventLogWriter struct { el *eventlog.Log } // Write implements io.Writer interface for eventLogWriter. func (w *eventLogWriter) Write(b []byte...
/content/code_sandbox/internal/aghos/syslog_windows.go
go
2016-07-06T10:31:47
2024-08-16T18:17:06
AdGuardHome
AdguardTeam/AdGuardHome
24,082
343
```go //go:build freebsd package aghos import ( "os" "syscall" ) func setRlimit(val uint64) (err error) { var rlim syscall.Rlimit rlim.Max = int64(val) rlim.Cur = int64(val) return syscall.Setrlimit(syscall.RLIMIT_NOFILE, &rlim) } func haveAdminRights() (bool, error) { return os.Getuid() == 0, nil } func i...
/content/code_sandbox/internal/aghos/os_freebsd.go
go
2016-07-06T10:31:47
2024-08-16T18:17:06
AdGuardHome
AdguardTeam/AdGuardHome
24,082
116
```go //go:build !darwin package aghos // preCheckActionStart performs the service start action pre-check. func preCheckActionStart() (err error) { return nil } ```
/content/code_sandbox/internal/aghos/service_others.go
go
2016-07-06T10:31:47
2024-08-16T18:17:06
AdGuardHome
AdguardTeam/AdGuardHome
24,082
41
```go //go:build windows package aghos import ( "os" "os/signal" "golang.org/x/sys/windows" ) func setRlimit(val uint64) (err error) { return Unsupported("setrlimit") } func haveAdminRights() (bool, error) { var token windows.Token h := windows.CurrentProcess() err := windows.OpenProcessToken(h, windows.TOK...
/content/code_sandbox/internal/aghos/os_windows.go
go
2016-07-06T10:31:47
2024-08-16T18:17:06
AdGuardHome
AdguardTeam/AdGuardHome
24,082
261
```go // Package aghos contains utilities for functions requiring system calls and // other OS-specific APIs. OS-specific network handling should go to aghnet // instead. package aghos import ( "bufio" "fmt" "io" "os" "os/exec" "path" "runtime" "slices" "strconv" "strings" "github.com/AdguardTeam/golibs/e...
/content/code_sandbox/internal/aghos/os.go
go
2016-07-06T10:31:47
2024-08-16T18:17:06
AdGuardHome
AdguardTeam/AdGuardHome
24,082
1,126
```go //go:build !windows package aghos import ( "log/syslog" "github.com/AdguardTeam/golibs/log" ) // configureSyslog sets standard log output to syslog. func configureSyslog(serviceName string) (err error) { w, err := syslog.New(syslog.LOG_NOTICE|syslog.LOG_USER, serviceName) if err != nil { // Don't wrap t...
/content/code_sandbox/internal/aghos/syslog_others.go
go
2016-07-06T10:31:47
2024-08-16T18:17:06
AdGuardHome
AdguardTeam/AdGuardHome
24,082
112
```go package aghos import ( "fmt" "io" "io/fs" "github.com/AdguardTeam/golibs/container" "github.com/AdguardTeam/golibs/errors" ) // FileWalker is the signature of a function called for files in the file tree. // As opposed to filepath.Walk it only walk the files (not directories) matching // the provided patt...
/content/code_sandbox/internal/aghos/filewalker.go
go
2016-07-06T10:31:47
2024-08-16T18:17:06
AdGuardHome
AdguardTeam/AdGuardHome
24,082
923
```go //go:build linux package aghos import ( "io" "os" "syscall" "github.com/AdguardTeam/golibs/osutil" "github.com/AdguardTeam/golibs/stringutil" ) func setRlimit(val uint64) (err error) { var rlim syscall.Rlimit rlim.Max = val rlim.Cur = val return syscall.Setrlimit(syscall.RLIMIT_NOFILE, &rlim) } fun...
/content/code_sandbox/internal/aghos/os_linux.go
go
2016-07-06T10:31:47
2024-08-16T18:17:06
AdGuardHome
AdguardTeam/AdGuardHome
24,082
300
```go package aghos import ( "io/fs" "path" "testing" "testing/fstest" "github.com/AdguardTeam/golibs/errors" "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" ) // errFS is an fs.FS implementation, method Open of which always returns // errFSOpen. type errFS struct{} // errFSOpen is...
/content/code_sandbox/internal/aghos/filewalker_internal_test.go
go
2016-07-06T10:31:47
2024-08-16T18:17:06
AdGuardHome
AdguardTeam/AdGuardHome
24,082
374
```go package aghos import ( "fmt" "io" "io/fs" "path/filepath" "github.com/AdguardTeam/golibs/container" "github.com/AdguardTeam/golibs/errors" "github.com/AdguardTeam/golibs/log" "github.com/AdguardTeam/golibs/osutil" "github.com/fsnotify/fsnotify" ) // event is a convenient alias for an empty struct to s...
/content/code_sandbox/internal/aghos/fswatcher.go
go
2016-07-06T10:31:47
2024-08-16T18:17:06
AdGuardHome
AdguardTeam/AdGuardHome
24,082
1,326
```go //go:build darwin || freebsd || linux || openbsd package aghos import ( "fmt" "os/user" "strconv" "syscall" ) func setGroup(groupName string) (err error) { g, err := user.LookupGroup(groupName) if err != nil { return fmt.Errorf("looking up group: %w", err) } gid, err := strconv.Atoi(g.Gid) if err !...
/content/code_sandbox/internal/aghos/user_unix.go
go
2016-07-06T10:31:47
2024-08-16T18:17:06
AdGuardHome
AdguardTeam/AdGuardHome
24,082
247
```go //go:build darwin package aghos import ( "fmt" "os" "path/filepath" "strings" "github.com/AdguardTeam/golibs/log" ) // preCheckActionStart performs the service start action pre-check. It warns // user that the service should be installed into Applications directory. func preCheckActionStart() (err error...
/content/code_sandbox/internal/aghos/service_darwin.go
go
2016-07-06T10:31:47
2024-08-16T18:17:06
AdGuardHome
AdguardTeam/AdGuardHome
24,082
183
```go package aghos import ( "bytes" "testing" "github.com/AdguardTeam/golibs/ioutil" "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" ) func TestLargestLabeled(t *testing.T) { const ( comm = `command-name` nl = "\n" ) testCases := []struct { name string data ...
/content/code_sandbox/internal/aghos/os_test.go
go
2016-07-06T10:31:47
2024-08-16T18:17:06
AdGuardHome
AdguardTeam/AdGuardHome
24,082
696
```go //go:build windows package aghos // TODO(a.garipov): Think of a way to implement these. Perhaps by using // syscall.CreateProcessAsUser or something from the golang.org/x/sys module. func setGroup(_ string) (err error) { return Unsupported("setgid") } func setUser(_ string) (err error) { return Unsupported...
/content/code_sandbox/internal/aghos/user_windows.go
go
2016-07-06T10:31:47
2024-08-16T18:17:06
AdGuardHome
AdguardTeam/AdGuardHome
24,082
85
```go package aghos // SetGroup sets the effective group ID of the calling process. func SetGroup(groupName string) (err error) { return setGroup(groupName) } // SetUser sets the effective user ID of the calling process. func SetUser(userName string) (err error) { return setUser(userName) } ```
/content/code_sandbox/internal/aghos/user.go
go
2016-07-06T10:31:47
2024-08-16T18:17:06
AdGuardHome
AdguardTeam/AdGuardHome
24,082
67
```go package aghos_test import ( "testing" "github.com/AdguardTeam/golibs/testutil" ) func TestMain(m *testing.M) { testutil.DiscardLogOutput(m) } ```
/content/code_sandbox/internal/aghos/aghos_test.go
go
2016-07-06T10:31:47
2024-08-16T18:17:06
AdGuardHome
AdguardTeam/AdGuardHome
24,082
44
```go package aghos_test import ( "bufio" "io" "path" "testing" "testing/fstest" "github.com/AdguardTeam/AdGuardHome/internal/aghos" "github.com/AdguardTeam/golibs/errors" "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" ) func TestFileWalker_Walk(t *testing.T) { const attribute =...
/content/code_sandbox/internal/aghos/filewalker_test.go
go
2016-07-06T10:31:47
2024-08-16T18:17:06
AdGuardHome
AdguardTeam/AdGuardHome
24,082
1,159
```go //go:build darwin || freebsd || linux || openbsd package aghos import ( "os" "os/signal" "golang.org/x/sys/unix" ) func notifyReconfigureSignal(c chan<- os.Signal) { signal.Notify(c, unix.SIGHUP) } func isReconfigureSignal(sig os.Signal) (ok bool) { return sig == unix.SIGHUP } func sendShutdownSignal(_...
/content/code_sandbox/internal/aghos/os_unix.go
go
2016-07-06T10:31:47
2024-08-16T18:17:06
AdGuardHome
AdguardTeam/AdGuardHome
24,082
110
```yaml --- !include release.yaml --- !include snapcraft.yaml --- !include test.yaml ```
/content/code_sandbox/bamboo-specs/bamboo.yaml
yaml
2016-07-06T10:31:47
2024-08-16T18:17:06
AdGuardHome
AdguardTeam/AdGuardHome
24,082
20
```yaml --- 'version': 2 'plan': 'project-key': 'AGH' 'key': 'AGHBSNAPSPECS' 'name': 'AdGuard Home - Build and publish release' # Make sure to sync any changes with the branch overrides below. 'variables': 'channel': 'edge' 'dockerFrontend': 'adguard/home-js-builder:2.0' 'dockerGo': 'adguard/go-...
/content/code_sandbox/bamboo-specs/release.yaml
yaml
2016-07-06T10:31:47
2024-08-16T18:17:06
AdGuardHome
AdguardTeam/AdGuardHome
24,082
1,989
```yaml --- 'version': 2 'plan': 'project-key': 'AGH' 'key': 'AHBRTSPECS' 'name': 'AdGuard Home - Build and run tests' 'variables': 'dockerFrontend': 'adguard/home-js-builder:2.0' 'dockerGo': 'adguard/go-builder:1.22.6--1' 'channel': 'development' 'stages': - 'Tests': 'manual': false ...
/content/code_sandbox/bamboo-specs/test.yaml
yaml
2016-07-06T10:31:47
2024-08-16T18:17:06
AdGuardHome
AdguardTeam/AdGuardHome
24,082
1,348
```yaml --- # This part of the release build is separate from the one described in # release.yaml, because the Snapcraft infrastructure is brittle, and timeouts # during logins and uploads often lead to release blocking. 'version': 2 'plan': 'project-key': 'AGH' 'key': 'AGHSNAP' 'name': 'AdGuard Home - Buil...
/content/code_sandbox/bamboo-specs/snapcraft.yaml
yaml
2016-07-06T10:31:47
2024-08-16T18:17:06
AdGuardHome
AdguardTeam/AdGuardHome
24,082
1,567
```shell #!/bin/sh # AdGuard Home Installation Script # Exit the script if a pipeline fails (-e), prevent accidental filename # expansion (-f), and consider undefined variables as errors (-u). set -e -f -u # Function log is an echo wrapper that writes to stderr if the caller # requested verbosity level greater than ...
/content/code_sandbox/scripts/install.sh
shell
2016-07-06T10:31:47
2024-08-16T18:17:06
AdGuardHome
AdguardTeam/AdGuardHome
24,082
3,895
```go package main import ( "bytes" "fmt" "io" "mime/multipart" "net/http" "net/textproto" "os" "path/filepath" "github.com/AdguardTeam/AdGuardHome/internal/aghhttp" "github.com/AdguardTeam/golibs/errors" "github.com/AdguardTeam/golibs/httphdr" "github.com/AdguardTeam/golibs/mapsutil" ) // upload base tr...
/content/code_sandbox/scripts/translations/upload.go
go
2016-07-06T10:31:47
2024-08-16T18:17:06
AdGuardHome
AdguardTeam/AdGuardHome
24,082
760
```go package main import ( "flag" "fmt" "io" "net/http" "net/url" "os" "path/filepath" "slices" "strings" "sync" "time" "github.com/AdguardTeam/golibs/errors" "github.com/AdguardTeam/golibs/ioutil" "github.com/AdguardTeam/golibs/log" ) // download and save all translations. func (c *twoskyClient) down...
/content/code_sandbox/scripts/translations/download.go
go
2016-07-06T10:31:47
2024-08-16T18:17:06
AdGuardHome
AdguardTeam/AdGuardHome
24,082
1,003
```go // translations downloads translations, uploads translations, prints summary // for translations, prints unused strings. package main import ( "bufio" "bytes" "cmp" "encoding/json" "fmt" "net/url" "os" "os/exec" "path/filepath" "slices" "strings" "time" "github.com/AdguardTeam/AdGuardHome/internal/...
/content/code_sandbox/scripts/translations/main.go
go
2016-07-06T10:31:47
2024-08-16T18:17:06
AdGuardHome
AdguardTeam/AdGuardHome
24,082
3,163
```javascript const fs = require('fs'); const readline = require('readline'); const dnsPacket = require('dns-packet') const processLineByLine = async (source, callback) => { const fileStream = fs.createReadStream(source); const rl = readline.createInterface({ input: fileStream, crlfDelay: Infi...
/content/code_sandbox/scripts/querylog/anonymize.js
javascript
2016-07-06T10:31:47
2024-08-16T18:17:06
AdGuardHome
AdguardTeam/AdGuardHome
24,082
746
```shell #!/bin/sh # This comment is used to simplify checking local copies of the script. Bump # this number every time a significant change is made to this script. # # AdGuard-Project-Version: 8 verbose="${VERBOSE:-0}" readonly verbose if [ "$verbose" -gt '0' ] then set -x fi # Set $EXIT_ON_ERROR to zero to see...
/content/code_sandbox/scripts/make/go-lint.sh
shell
2016-07-06T10:31:47
2024-08-16T18:17:06
AdGuardHome
AdguardTeam/AdGuardHome
24,082
2,012
```shell #!/bin/sh # AdGuard Home Version Generation Script # # This script generates versions based on the current git tree state. The valid # output formats are: # # * For release versions, "v0.123.4". This version should be the one in the # current tag, and the script merely checks, that the current commit ...
/content/code_sandbox/scripts/make/version.sh
shell
2016-07-06T10:31:47
2024-08-16T18:17:06
AdGuardHome
AdguardTeam/AdGuardHome
24,082
1,468
```shell #!/bin/sh verbose="${VERBOSE:-0}" readonly verbose if [ "$verbose" -gt '0' ] then set -x fi set -e -f -u dist_dir="${DIST_DIR:?please set DIST_DIR}" sudo_cmd="${SUDO:-}" readonly dist_dir sudo_cmd $sudo_cmd rm -f\ ./AdGuardHome\ ./AdGuardHome.exe\ ./coverage.txt\ ; $sudo_cmd rm -f -r\ ./bin/\ ./bu...
/content/code_sandbox/scripts/make/clean.sh
shell
2016-07-06T10:31:47
2024-08-16T18:17:06
AdGuardHome
AdguardTeam/AdGuardHome
24,082
133
```shell #!/bin/sh # This comment is used to simplify checking local copies of the script. Bump # this number every time a significant change is made to this script. # # AdGuard-Project-Version: 1 verbose="${VERBOSE:-0}" readonly verbose # Verbosity levels: # 0 = Don't print anything except for errors. # 1 = Pr...
/content/code_sandbox/scripts/make/go-test.sh
shell
2016-07-06T10:31:47
2024-08-16T18:17:06
AdGuardHome
AdguardTeam/AdGuardHome
24,082
337
```shell #!/bin/sh # This comment is used to simplify checking local copies of the script. Bump # this number every time a significant change is made to this script. # # AdGuard-Project-Version: 4 verbose="${VERBOSE:-0}" readonly verbose if [ "$verbose" -gt '1' ] then set -x v_flags='-v=1' x_flags='-x=1' elif [ ...
/content/code_sandbox/scripts/make/go-tools.sh
shell
2016-07-06T10:31:47
2024-08-16T18:17:06
AdGuardHome
AdguardTeam/AdGuardHome
24,082
581
```shell #!/bin/sh verbose="${VERBOSE:-0}" readonly verbose # Verbosity levels: # 0 = Don't print anything except for errors. # 1 = Print commands, but not nested commands. # 2 = Print everything. if [ "$verbose" -gt '1' ] then set -x v_flags='-v=1' x_flags='-x=1' elif [ "$verbose" -gt '0' ] then set -x v_...
/content/code_sandbox/scripts/make/go-fuzz.sh
shell
2016-07-06T10:31:47
2024-08-16T18:17:06
AdGuardHome
AdguardTeam/AdGuardHome
24,082
347
```shell #!/bin/sh # This comment is used to simplify checking local copies of the script. Bump # this number every time a remarkable change is made to this script. # # AdGuard-Project-Version: 2 verbose="${VERBOSE:-0}" readonly verbose # Don't use -f, because we use globs in this script. set -e -u if [ "$verbose"...
/content/code_sandbox/scripts/make/sh-lint.sh
shell
2016-07-06T10:31:47
2024-08-16T18:17:06
AdGuardHome
AdguardTeam/AdGuardHome
24,082
300
```shell #!/bin/sh # This comment is used to simplify checking local copies of the script. Bump # this number every time a remarkable change is made to this script. # # AdGuard-Project-Version: 2 verbose="${VERBOSE:-0}" readonly verbose set -e -f -u if [ "$verbose" -gt '0' ] then set -x fi # NOTE: Adjust for you...
/content/code_sandbox/scripts/make/md-lint.sh
shell
2016-07-06T10:31:47
2024-08-16T18:17:06
AdGuardHome
AdguardTeam/AdGuardHome
24,082
123
```shell #!/bin/sh verbose="${VERBOSE:-0}" if [ "$verbose" -gt '0' ] then set -x debug_flags='--debug=1' else set +x debug_flags='--debug=0' fi readonly debug_flags set -e -f -u # Require these to be set. The channel value is validated later. channel="${CHANNEL:?please set CHANNEL}" commit="${COMMIT:?please se...
/content/code_sandbox/scripts/make/build-docker.sh
shell
2016-07-06T10:31:47
2024-08-16T18:17:06
AdGuardHome
AdguardTeam/AdGuardHome
24,082
1,006
```shell #!/bin/sh verbose="${VERBOSE:-0}" readonly verbose # Verbosity levels: # 0 = Don't print anything except for errors. # 1 = Print commands, but not nested commands. # 2 = Print everything. if [ "$verbose" -gt '1' ] then set -x v_flags='-v=1' x_flags='-x=1' elif [ "$verbose" -gt '0' ] then set -x v_...
/content/code_sandbox/scripts/make/go-bench.sh
shell
2016-07-06T10:31:47
2024-08-16T18:17:06
AdGuardHome
AdguardTeam/AdGuardHome
24,082
302
```shell #!/bin/sh # This comment is used to simplify checking local copies of the script. Bump # this number every time a significant change is made to this script. # # AdGuard-Project-Version: 1 verbose="${VERBOSE:-0}" readonly verbose if [ "$verbose" -gt '1' ] then env set -x x_flags='-x=1' elif [ "$verbose" ...
/content/code_sandbox/scripts/make/go-deps.sh
shell
2016-07-06T10:31:47
2024-08-16T18:17:06
AdGuardHome
AdguardTeam/AdGuardHome
24,082
152
```shell #!/bin/sh # This comment is used to simplify checking local copies of the script. Bump # this number every time a remarkable change is made to this script. # # AdGuard-Project-Version: 5 verbose="${VERBOSE:-0}" readonly verbose if [ "$verbose" -gt '0' ] then set -x fi # Set $EXIT_ON_ERROR to zero to see ...
/content/code_sandbox/scripts/make/txt-lint.sh
shell
2016-07-06T10:31:47
2024-08-16T18:17:06
AdGuardHome
AdguardTeam/AdGuardHome
24,082
558
```shell #!/bin/sh # This comment is used to simplify checking local copies of the script. Bump # this number every time a significant change is made to this script. # # AdGuard-Project-Version: 2 verbose="${VERBOSE:-0}" readonly verbose if [ "$verbose" -gt '1' ] then env set -x x_flags='-x=1' elif [ "$verbose" ...
/content/code_sandbox/scripts/make/go-upd-tools.sh
shell
2016-07-06T10:31:47
2024-08-16T18:17:06
AdGuardHome
AdguardTeam/AdGuardHome
24,082
164
```shell #!/bin/sh # Common script helpers # # This file contains common script helpers. It should be sourced in scripts # right after the initial environment processing. # This comment is used to simplify checking local copies of the script. Bump # this number every time a remarkable change is made to this script....
/content/code_sandbox/scripts/make/helper.sh
shell
2016-07-06T10:31:47
2024-08-16T18:17:06
AdGuardHome
AdguardTeam/AdGuardHome
24,082
460
```shell #!/bin/sh # AdGuard Home Release Script # # The commentary in this file is written with the assumption that the reader # only has superficial knowledge of the POSIX shell language and alike. # Experienced readers may find it overly verbose. # The default verbosity level is 0. Show log messages if the caller...
/content/code_sandbox/scripts/make/build-release.sh
shell
2016-07-06T10:31:47
2024-08-16T18:17:06
AdGuardHome
AdguardTeam/AdGuardHome
24,082
2,889
```shell #!/bin/sh # AdGuard Home Build Script # # The commentary in this file is written with the assumption that the reader # only has superficial knowledge of the POSIX shell language and alike. # Experienced readers may find it overly verbose. # This comment is used to simplify checking local copies of the script...
/content/code_sandbox/scripts/make/go-build.sh
shell
2016-07-06T10:31:47
2024-08-16T18:17:06
AdGuardHome
AdguardTeam/AdGuardHome
24,082
1,056
```shell #!/bin/sh verbose="${VERBOSE:-0}" if [ "$verbose" -gt '0' ] then set -x fi set -e -f -u # Function log is an echo wrapper that writes to stderr if the caller requested # verbosity level greater than 0. Otherwise, it does nothing. log() { if [ "$verbose" -gt '0' ] then # Don't use quotes to get word s...
/content/code_sandbox/scripts/snap/upload.sh
shell
2016-07-06T10:31:47
2024-08-16T18:17:06
AdGuardHome
AdguardTeam/AdGuardHome
24,082
566
```shell #!/bin/sh verbose="${VERBOSE:-0}" if [ "$verbose" -gt '0' ] then set -x fi set -e -f -u channel="${CHANNEL:?please set CHANNEL}" readonly channel printf '%s %s\n'\ '386' 'i386'\ 'amd64' 'amd64'\ 'armv7' 'armhf'\ 'arm64' 'arm64' \ | while read -r arch snap_arch do release_url="path_to_url{channel}/...
/content/code_sandbox/scripts/snap/download.sh
shell
2016-07-06T10:31:47
2024-08-16T18:17:06
AdGuardHome
AdguardTeam/AdGuardHome
24,082
199
```shell #!/bin/sh verbose="${VERBOSE:-0}" if [ "$verbose" -gt '0' ] then set -x fi set -e -f -u # Function log is an echo wrapper that writes to stderr if the caller requested # verbosity level greater than 0. Otherwise, it does nothing. # # TODO(a.garipov): Add to helpers.sh and use more actively in scripts. lo...
/content/code_sandbox/scripts/snap/build.sh
shell
2016-07-06T10:31:47
2024-08-16T18:17:06
AdGuardHome
AdguardTeam/AdGuardHome
24,082
534
```go // vetted-filters fetches the most recent Hostlists Registry filtering rule list // index and transforms the filters from it to AdGuard Home's format. package main import ( "bytes" "context" "encoding/json" "fmt" "log/slog" "net/http" "net/url" "os" "time" "github.com/AdguardTeam/golibs/logutil/slogut...
/content/code_sandbox/scripts/vetted-filters/main.go
go
2016-07-06T10:31:47
2024-08-16T18:17:06
AdGuardHome
AdguardTeam/AdGuardHome
24,082
1,211
```go // blocked services fetches the most recent Hostlists Registry blocked service // index and transforms the filters from it to AdGuard Home's data and code // formats. package main import ( "encoding/json" "fmt" "net/http" "net/url" "os" "slices" "strings" "text/template" "time" "github.com/AdguardTeam...
/content/code_sandbox/scripts/blocked-services/main.go
go
2016-07-06T10:31:47
2024-08-16T18:17:06
AdGuardHome
AdguardTeam/AdGuardHome
24,082
870
```shell #!/bin/sh set -e -f -u -x # This script syncs companies DB that we bundle with AdGuard Home. The source # for this database is path_to_url # trackers_url='path_to_url output='./client/src/helpers/trackers/trackers.json' readonly trackers_url output curl -o "$output" -v "$trackers_url" ```
/content/code_sandbox/scripts/companiesdb/download.sh
shell
2016-07-06T10:31:47
2024-08-16T18:17:06
AdGuardHome
AdguardTeam/AdGuardHome
24,082
83
```yaml # The %VARIABLES% are be replaced by actual values by the build script. 'name': 'adguard-home' 'base': 'core22' 'version': '%VERSION%' 'summary': Network-wide ads & trackers blocking DNS server 'description': | AdGuard Home is a network-wide software for blocking ads & tracking. After you set it up, it'll ...
/content/code_sandbox/snap/snap.tmpl.yaml
yaml
2016-07-06T10:31:47
2024-08-16T18:17:06
AdGuardHome
AdguardTeam/AdGuardHome
24,082
390
```desktop [Desktop Entry] Type=Application Encoding=UTF-8 Name=AdGuard Home Comment=Network-wide ads & trackers blocking DNS server Exec=adguard-home.adguard-home-web Icon=${SNAP}/meta/gui/adguard-home-web.png Terminal=false ```
/content/code_sandbox/snap/gui/adguard-home-web.desktop
desktop
2016-07-06T10:31:47
2024-08-16T18:17:06
AdGuardHome
AdguardTeam/AdGuardHome
24,082
57