1
0
mirror of https://github.com/cmur2/dyndnsd.git synced 2025-08-08 08:33:56 +02:00

Compare commits

..

21 Commits

Author SHA1 Message Date
cn
199ccf7665 release: 3.4.1 2021-04-15 09:28:31 +02:00
cn
7c77b7304a ci: give Rubygems time to process new push before building Docker image 2021-04-15 09:28:08 +02:00
cn
243f679d7f docker: update base image to Alpine 3.13.5 2021-04-15 09:24:44 +02:00
cn
085f75c6dd docs: fix grammar 2021-04-15 09:23:35 +02:00
cn
0e96359429 release: version 3.4.0 2021-04-02 11:01:01 +02:00
cn
6374837156 docker: run as non-root user by default 2021-04-02 10:59:54 +02:00
cn
53af02398d ci: test building Docker image on push 2021-04-02 10:59:54 +02:00
cn
16706071b7 release: 3.3.3 2021-04-01 09:38:43 +02:00
cn
43f089ce70 docker: update base image to Alpine 3.13.4 2021-04-01 09:37:59 +02:00
depfu[bot]
15c3e587ff gems: update rubocop to version 1.12.0 2021-03-25 17:22:38 +01:00
depfu[bot]
b438ed097f gems: update bundler-audit to version 0.8.0 2021-03-11 17:19:11 +01:00
depfu[bot]
337c779410 gems: update rubocop to version 1.11.0 2021-03-02 12:32:01 +01:00
cn
b004b4d1e7 release: 3.3.2 2021-02-20 10:06:12 +01:00
cn
3cbc0a3f01 release: 3.3.2.rc1 2021-02-20 10:03:38 +01:00
cn
c675a347d1 ci: update to docker/build-push-action@v2 2021-02-20 10:02:23 +01:00
Christian Nicolai
70ec21af94 release: 3.3.1 2021-02-18 11:26:48 +01:00
Christian Nicolai
920d82f073 docker: allow successful compiling of nio4r gem dependency
- now seems to need linux-headers, see https://github.com/socketry/nio4r/issues/225
2021-02-18 11:25:05 +01:00
Christian Nicolai
dee9beb4e0 docker: update base image to Alpine 3.13.2 2021-02-18 11:24:46 +01:00
depfu[bot]
08e92a0772 gems: update rubocop to version 1.10.0 2021-02-16 16:59:56 +01:00
depfu[bot]
eb1c107bf3 gems: update rubocop-rspec to version 2.2.0 2021-02-04 10:11:51 +01:00
depfu[bot]
a75d9dc5e6 gems: update rubocop to version 1.9.0 2021-01-29 14:29:56 +01:00
24 changed files with 96 additions and 301 deletions

View File

@@ -11,16 +11,28 @@ jobs:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: actions/checkout@v2 - uses: actions/checkout@v2
- run: sleep 30
- name: Extract dyndnsd version from tag name - name: Extract dyndnsd version from tag name
run: | run: |
echo "DYNDNSD_VERSION=${GITHUB_REF#refs/*/v}" >> $GITHUB_ENV echo "DYNDNSD_VERSION=${GITHUB_REF#refs/*/v}" >> $GITHUB_ENV
# https://github.com/marketplace/actions/build-and-push-docker-images # https://github.com/marketplace/actions/build-and-push-docker-images
- name: Build and push Docker image for dyndnsd ${{ env.DYNDNSD_VERSION }} - name: Set up Docker Buildx
uses: docker/build-push-action@v1 uses: docker/setup-buildx-action@v1
- name: Login to Docker Hub
uses: docker/login-action@v1
with: with:
username: cmur2 username: cmur2
password: ${{ secrets.DOCKER_TOKEN }} password: ${{ secrets.DOCKER_TOKEN }}
repository: cmur2/dyndnsd
path: docker - name: Build and push Docker image for dyndnsd ${{ env.DYNDNSD_VERSION }}
build_args: DYNDNSD_VERSION=${{ env.DYNDNSD_VERSION }} uses: docker/build-push-action@v2
tag_with_ref: true with:
context: docker
build-args: |
DYNDNSD_VERSION=${{ env.DYNDNSD_VERSION }}
push: true
tags: cmur2/dyndnsd:v${{ env.DYNDNSD_VERSION }}

View File

@@ -16,6 +16,9 @@ jobs:
strategy: strategy:
matrix: matrix:
ruby-version: ruby-version:
- '2.5'
- '2.6'
- '2.7'
- '3.0' - '3.0'
steps: steps:
- uses: actions/checkout@v2 - uses: actions/checkout@v2
@@ -27,3 +30,12 @@ jobs:
- name: Lint and Test - name: Lint and Test
run: | run: |
bundle exec rake ci bundle exec rake ci
# https://github.com/marketplace/actions/build-and-push-docker-images
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1
- name: Test building Docker image for dyndnsd
uses: docker/build-push-action@v2
with:
context: docker

View File

@@ -3,7 +3,7 @@ require:
- rubocop-rspec - rubocop-rspec
AllCops: AllCops:
TargetRubyVersion: '3.0' TargetRubyVersion: '2.5'
NewCops: enable NewCops: enable
Layout/EmptyLineAfterGuardClause: Layout/EmptyLineAfterGuardClause:

View File

@@ -1,5 +1,35 @@
# Changelog # Changelog
## 3.4.1 (April 15, 2021)
OTHER:
- update base of Docker image to Alpine 3.13.5 to fix security vulnerabilities
## 3.4.0 (April 2, 2021)
IMPROVEMENTS:
- **change** Docker image to run as non-root user `65534` by default, limits attack surface for security and gives OpenShift compatibility
## 3.3.3 (April 1, 2021)
OTHER:
- update base of Docker image to Alpine 3.13.4 to fix security vulnerabilities
## 3.3.2 (February 20, 2021)
OTHER:
- update to use `docker/build-push-action@v2` for releasing Docker image in GHA
## 3.3.1 (February 18, 2021)
OTHER:
- update base of Docker image to Alpine 3.13.2 to fix security vulnerabilities
## 3.3.0 (January 18, 2021) ## 3.3.0 (January 18, 2021)
OTHER: OTHER:
@@ -145,7 +175,7 @@ IMPROVEMENTS:
IMPROVEMENTS: IMPROVEMENTS:
- Support dropping priviliges on startup, also affects external commands run - Support dropping privileges on startup, also affects external commands run
- Add [metriks](https://github.com/eric/metriks) support for basic metrics in the process title - Add [metriks](https://github.com/eric/metriks) support for basic metrics in the process title
- Detach from child processes running external commands to avoid zombie processes - Detach from child processes running external commands to avoid zombie processes

View File

@@ -75,7 +75,7 @@ There is an officially maintained [Docker image for dyndnsd](https://hub.docker.
Users can make extensions by deriving from the official Docker image or building their own. Users can make extensions by deriving from the official Docker image or building their own.
The Docker image consumes the same configuration file in YAML format as the gem, inside the container it needs to be mounted/available as `/etc/dyndnsd/config.yml`. the following YAML should be used as a base and extended with user's settings: The Docker image consumes the same configuration file in YAML format as the gem, inside the container it needs to be mounted/available as `/etc/dyndnsd/config.yml`. The following YAML should be used as a base and extended with user's settings:
```yaml ```yaml
host: "0.0.0.0" host: "0.0.0.0"
@@ -98,7 +98,7 @@ docker run -d --name dyndnsd \
cmur2/dyndnsd:vX.Y.Z cmur2/dyndnsd:vX.Y.Z
``` ```
*Note*: You may need to expose more then just port 8080 e.g. if you use the `zone_transfer_server` which can be done by appending additional `-p 5353:5353` flags to the `docker run` command. *Note*: You may need to expose more than just port 8080 e.g. if you use the `zone_transfer_server` which can be done by appending additional `-p 5353:5353` flags to the `docker run` command.
@@ -106,7 +106,7 @@ docker run -d --name dyndnsd \
By using [DNS zone transfers via AXFR (RFC5936)](https://tools.ietf.org/html/rfc5936) any secondary nameserver can retrieve the DNS zone contents from dyndnsd.rb and serve them to clients. By using [DNS zone transfers via AXFR (RFC5936)](https://tools.ietf.org/html/rfc5936) any secondary nameserver can retrieve the DNS zone contents from dyndnsd.rb and serve them to clients.
To speedup propagation after changes dyndnsd.rb can issue a [DNS NOTIFY (RFC1996)](https://tools.ietf.org/html/rfc1996) to inform the nameserver that the DNS zone contents changed and should be fetched even before the time indicated in the SOA record is up. To speedup propagation after changes dyndnsd.rb can issue a [DNS NOTIFY (RFC1996)](https://tools.ietf.org/html/rfc1996) to inform the nameserver that the DNS zone contents changed and should be fetched even before the time indicated in the SOA record is up.
Currently dyndnsd.rb does not support any authentication for incoming DNS zone transfer requests so it should be isolated from the internet on these ports. Currently, dyndnsd.rb does not support any authentication for incoming DNS zone transfer request, so it should be isolated from the internet on these ports.
This approach has several advantages: This approach has several advantages:
- dyndnsd.rb can be used in *hidden primary* fashion isolated from client's DNS traffic and does not need to implement full nameserver features - dyndnsd.rb can be used in *hidden primary* fashion isolated from client's DNS traffic and does not need to implement full nameserver features
@@ -151,7 +151,7 @@ users:
NSD is a nice, open source, authoritative-only, low-memory DNS server that reads BIND-style zone files (and converts them into its own database) and has a simple configuration file. NSD is a nice, open source, authoritative-only, low-memory DNS server that reads BIND-style zone files (and converts them into its own database) and has a simple configuration file.
A feature NSD is lacking is the [Dynamic DNS update (RFC2136)](https://tools.ietf.org/html/rfc2136) functionality BIND offers but one can fake it using the following dyndnsd.rb configuration: A feature NSD is lacking is the [Dynamic DNS update (RFC2136)](https://tools.ietf.org/html/rfc2136) functionality BIND offers, but one can fake it using the following dyndnsd.rb configuration:
```yaml ```yaml
host: "0.0.0.0" host: "0.0.0.0"
@@ -197,29 +197,29 @@ The update URL you want to tell your clients (humans or scripts ^^) consists of
where: where:
* the protocol depends on your (webserver/proxy) settings * the protocol depends on your (web server/proxy) settings
* USER and PASSWORD are needed for HTTP Basic Auth and valid combinations are defined in your config.yaml * `USER` and `PASSWORD` are needed for HTTP Basic Auth and valid combinations are defined in your config.yaml
* DOMAIN should match what you defined in your config.yaml as domain but may be anything else when using a webserver as proxy * `DOMAIN` should match what you defined in your config.yaml as domain but may be anything else when using a web server as proxy
* PORT depends on your (webserver/proxy) settings * `PORT` depends on your (web server/proxy) settings
* HOSTNAMES is a required list of comma-separated FQDNs (they all have to end with your config.yaml domain) the user wants to update * `HOSTNAMES` is a required list of comma-separated FQDNs (they all have to end with your config.yaml domain) the user wants to update
* MYIP is optional and the HTTP client's IP address will be used if missing * `MYIP` is optional and the HTTP client's IP address will be used if missing
* MYIP6 is optional but if present also requires presence of MYIP * `MYIP6` is optional but if present also requires presence of `MYIP`
### IP address determination ### IP address determination
The following rules apply: The following rules apply:
* use any IP address provided via the myip parameter when present, or * use any IP address provided via the `myip` parameter when present, or
* use any IP address provided via the X-Real-IP header e.g. when used behind HTTP reverse proxy such as nginx, or * use any IP address provided via the `X-Real-IP` header e.g. when used behind HTTP reverse proxy such as nginx, or
* use any IP address used by the connecting HTTP client * use any IP address used by the connecting HTTP client
If you want to provide an additional IPv6 address as myip6 parameter, the myip parameter containing an IPv4 address has to be present, too! No automatism is applied then. If you want to provide an additional IPv6 address as myip6 parameter, the `myip` parameter containing an IPv4 address has to be present, too! No automatism is applied then.
### SSL, multiple listen ports ### SSL, multiple listen ports
Use a webserver as a proxy to handle SSL and/or multiple listen addresses and ports. DynDNS.com provides HTTP on port 80 and 8245 and HTTPS on port 443. Use a web server as a proxy to handle SSL and/or multiple listen addresses and ports. DynDNS.com provides HTTP on port 80 and 8245 and HTTPS on port 443.
### Startup ### Startup
@@ -231,7 +231,7 @@ The [Debian 6 init.d script](docs/debian-6-init-dyndnsd) assumes that dyndnsd.rb
### Monitoring ### Monitoring
For monitoring dyndnsd.rb uses the [metriks](https://github.com/eric/metriks) framework and exposes several metrics like the number of unauthenticated requests, requests that did (not) update a hostname, etc. By default the most important metrics are shown in the [proctitle](https://github.com/eric/metriks#proc-title-reporter) but you can also configure a [Graphite](https://graphiteapp.org/) backend for central monitoring or the [textfile_reporter](https://github.com/prometheus/node_exporter/#textfile-collector) which outputs Graphite-style metrics that are also compatible with Prometheus to a file. For monitoring dyndnsd.rb uses the [metriks](https://github.com/eric/metriks) framework and exposes several metrics like the number of unauthenticated requests, requests that did (not) update a hostname, etc. By default, the most important metrics are shown in the [proctitle](https://github.com/eric/metriks#proc-title-reporter, butt you can also configure a [Graphite](https://graphiteapp.org/) backend for central monitoring or the [textfile_reporter](https://github.com/prometheus/node_exporter/#textfile-collector) which outputs Graphite-style metrics that are also compatible with Prometheus to a file.
```yaml ```yaml
host: "0.0.0.0" host: "0.0.0.0"
@@ -273,7 +273,7 @@ users:
For tracing, dyndnsd.rb is instrumented using the [OpenTracing](http://opentracing.io/) framework and will emit span tracing data for the most important operations happening during the request/response cycle. Using a middleware for Rack allows handling incoming OpenTracing span information properly. For tracing, dyndnsd.rb is instrumented using the [OpenTracing](http://opentracing.io/) framework and will emit span tracing data for the most important operations happening during the request/response cycle. Using a middleware for Rack allows handling incoming OpenTracing span information properly.
Currently only one OpenTracing-compatible tracer implementation named [CNCF Jaeger](https://github.com/jaegertracing/jaeger) can be configured to use with dyndnsd.rb. Currently, only one OpenTracing-compatible tracer implementation named [CNCF Jaeger](https://github.com/jaegertracing/jaeger) can be configured to use with dyndnsd.rb.
```yaml ```yaml
host: "0.0.0.0" host: "0.0.0.0"

View File

@@ -26,19 +26,7 @@ task :hadolint do
sh 'docker run --rm -i hadolint/hadolint:v1.18.0 hadolint --ignore DL3018 - < docker/Dockerfile' sh 'docker run --rm -i hadolint/hadolint:v1.18.0 hadolint --ignore DL3018 - < docker/Dockerfile'
end end
desc 'Run experimental steep type checker' task default: [:rubocop, :spec, 'bundle:audit', :solargraph]
task :steep do
sh 'steep check'
end
namespace :steep do
desc 'Output coverage stats from steep'
task :stats do
sh 'steep stats --log-level=fatal | awk -F\',\' \'{ printf "%-50s %-9s %-12s %-14s %-10s\n", $2, $3, $4, $5, $7 }\''
end
end
task default: [:rubocop, :spec, 'bundle:audit', :solargraph, :steep]
desc 'Run all tasks desired for CI' desc 'Run all tasks desired for CI'
task ci: ['solargraph:init', :default, :hadolint] task ci: ['solargraph:init', :default, :hadolint]

View File

@@ -1,11 +0,0 @@
# frozen_string_literal: true
target :lib do
signature 'sig'
check 'lib'
ignore 'lib/dyndnsd/updater/zone_transfer_server.rb'
library 'date'
library 'forwardable'
end

View File

@@ -1,15 +1,21 @@
FROM alpine:3.13 FROM alpine:3.13.5
EXPOSE 5353 8080 EXPOSE 5353 8080
ARG DYNDNSD_VERSION=3.0.0 ARG DYNDNSD_VERSION=3.4.1
RUN apk --no-cache add openssl ca-certificates && \ RUN apk --no-cache add openssl ca-certificates && \
apk --no-cache add ruby ruby-etc ruby-io-console ruby-json ruby-webrick && \ apk --no-cache add ruby ruby-etc ruby-io-console ruby-json ruby-webrick && \
apk --no-cache add --virtual .build-deps ruby-dev build-base tzdata && \ apk --no-cache add --virtual .build-deps linux-headers ruby-dev build-base tzdata && \
gem install --no-document dyndnsd -v ${DYNDNSD_VERSION} && \ gem install --no-document dyndnsd -v ${DYNDNSD_VERSION} && \
# set timezone to Berlin # set timezone to Berlin
cp /usr/share/zoneinfo/Europe/Berlin /etc/localtime && \ cp /usr/share/zoneinfo/Europe/Berlin /etc/localtime && \
apk del .build-deps apk del .build-deps
# Follow the principle of least privilege: run as unprivileged user.
# Running as non-root enables running this image in platforms like OpenShift
# that do not allow images running as root.
# User ID 65534 is usually user 'nobody'.
USER 65534
ENTRYPOINT ["dyndnsd", "/etc/dyndnsd/config.yml"] ENTRYPOINT ["dyndnsd", "/etc/dyndnsd/config.yml"]

View File

@@ -25,7 +25,7 @@ Gem::Specification.new do |s|
s.executables = ['dyndnsd'] s.executables = ['dyndnsd']
s.extra_rdoc_files = Dir['README.md', 'CHANGELOG.md', 'LICENSE'] s.extra_rdoc_files = Dir['README.md', 'CHANGELOG.md', 'LICENSE']
s.required_ruby_version = '>= 3.0' s.required_ruby_version = '>= 2.5'
s.add_runtime_dependency 'async-dns', '~> 1.2.0' s.add_runtime_dependency 'async-dns', '~> 1.2.0'
s.add_runtime_dependency 'jaeger-client', '~> 1.1.0' s.add_runtime_dependency 'jaeger-client', '~> 1.1.0'
@@ -36,13 +36,12 @@ Gem::Specification.new do |s|
s.add_runtime_dependency 'webrick', '>= 1.6.1' s.add_runtime_dependency 'webrick', '>= 1.6.1'
s.add_development_dependency 'bundler' s.add_development_dependency 'bundler'
s.add_development_dependency 'bundler-audit', '~> 0.7.0' s.add_development_dependency 'bundler-audit', '~> 0.8.0'
s.add_development_dependency 'rack-test' s.add_development_dependency 'rack-test'
s.add_development_dependency 'rake' s.add_development_dependency 'rake'
s.add_development_dependency 'rspec' s.add_development_dependency 'rspec'
s.add_development_dependency 'rubocop', '~> 1.7.0' s.add_development_dependency 'rubocop', '~> 1.12.0'
s.add_development_dependency 'rubocop-rake', '~> 0.5.1' s.add_development_dependency 'rubocop-rake', '~> 0.5.1'
s.add_development_dependency 'rubocop-rspec', '~> 2.1.0' s.add_development_dependency 'rubocop-rspec', '~> 2.2.0'
s.add_development_dependency 'solargraph', '~> 0.40.0' s.add_development_dependency 'solargraph', '~> 0.40.0'
s.add_development_dependency 'steep', '~> 0.39.0'
end end

View File

@@ -276,7 +276,7 @@ module Dyndnsd
reporter = Metriks::Reporter::Graphite.new(host, port, options) reporter = Metriks::Reporter::Graphite.new(host, port, options)
reporter.start reporter.start
elsif config['textfile'] elsif config['textfile']
file = (config['textfile']['file'] || '/tmp/dyndnsd-metrics.prom').to_s file = config['textfile']['file'] || '/tmp/dyndnsd-metrics.prom'
options = {} options = {}
options[:prefix] = config['textfile']['prefix'] if config['textfile']['prefix'] options[:prefix] = config['textfile']['prefix'] if config['textfile']['prefix']
reporter = Dyndnsd::TextfileReporter.new(file, options) reporter = Dyndnsd::TextfileReporter.new(file, options)

View File

@@ -33,7 +33,6 @@ module Dyndnsd
when 422 when 422
error_response_map[headers['X-DynDNS-Response']] error_response_map[headers['X-DynDNS-Response']]
end end
# TODO: possible nil response!
end end
# @param status_code [Integer] # @param status_code [Integer]
@@ -47,7 +46,6 @@ module Dyndnsd
when 401 when 401
[status_code, headers, ['badauth']] [status_code, headers, ['badauth']]
end end
# TODO: possible nil response!
end end
# @param changes [Array<Symbol>] # @param changes [Array<Symbol>]

View File

@@ -33,7 +33,6 @@ module Dyndnsd
when 422 when 422
error_response_map[headers['X-DynDNS-Response']] error_response_map[headers['X-DynDNS-Response']]
end end
# TODO: possible nil response!
end end
# @param status_code [Integer] # @param status_code [Integer]
@@ -47,7 +46,6 @@ module Dyndnsd
when 401 when 401
[status_code, headers, ['Unauthorized']] [status_code, headers, ['Unauthorized']]
end end
# TODO: possible nil response!
end end
# @param changes [Array<Symbol>] # @param changes [Array<Symbol>]

View File

@@ -91,7 +91,7 @@ module Dyndnsd
end end
end end
# @param file [File] # @param file [String]
# @param base_name [String] # @param base_name [String]
# @param metric [Object] # @param metric [Object]
# @param keys [Array<Symbol>] # @param keys [Array<Symbol>]

View File

@@ -1,5 +1,5 @@
# frozen_string_literal: true # frozen_string_literal: true
module Dyndnsd module Dyndnsd
VERSION = '3.3.0' VERSION = '3.4.1'
end end

View File

@@ -1,69 +0,0 @@
module Dyndnsd
type config = Hash[String, untyped]
type env = Hash[String, String]
type headers = Hash[String, String]
type response = Array[int | Hash[string, string] | Array[string]]
interface _App
def call: (env env) -> response
end
# @return [Logger]
def self.logger: () -> untyped
# @param logger [Logger]
# @return [Logger]
def self.logger=: (untyped logger) -> untyped
class LogFormatter
# @param lvl [Object]
# @param _time [DateTime]
# @param _progname [String]
# @param msg [Object]
# @return [String]
def call: (untyped lvl, DateTime _time, String _progname, untyped msg) -> String
end
class Daemon
# @param config [Hash{String => Object}]
# @param db [Dyndnsd::Database]
# @param updater [#update]
def initialize: (untyped config, untyped db, untyped updater) -> void
# @param username [String]
# @param password [String]
# @return [Boolean]
def authorized?: (String username, String password) -> bool
def call: (env env) -> response
def self.run!: () -> void
private
# @param params [Hash{String => String}]
# @return [Array<String>]
def extract_v4_and_v6_address: (untyped params) -> (::Array[untyped] | untyped)
# @param env [Hash{String => String}]
# @param params [Hash{String => String}]
# @return [Array<String>]
def extract_myips: (untyped env, untyped params) -> (untyped | ::Array[untyped])
# @param hostnames [String]
# @param myips [Array<String>]
# @return [Array<Symbol>]
def process_changes: (untyped hostnames, untyped myips) -> untyped
def update_db: () -> void
def handle_dyndns_request: (env env) -> response
def self.setup_logger: (config config) -> void
def self.setup_traps: () -> void
def self.setup_monitoring: (config config) -> void
def self.setup_tracing: (config config) -> void
def self.setup_rack: (config config) -> void
end
end

View File

@@ -1,21 +0,0 @@
module Dyndnsd
class Database
extend Forwardable
def initialize: (string db_file) -> void
def load: () -> void
def save: () -> void
def changed?: () -> bool
def []: (string key) -> untyped
def []=: (string key, untyped value) -> void
def each: () { (string key, untyped value) -> void } -> void
def has_key?: (string key) -> bool
end
end

View File

@@ -1,9 +0,0 @@
module Dyndnsd
module Generator
class Bind
def initialize: (String domain, Hash[String, untyped] updater_params) -> void
def generate: (Dyndnsd::Database db) -> string
end
end
end

View File

@@ -1,32 +0,0 @@
module Dyndnsd
type users = Hash[String, Hash[String, String]]
type hosts = Hash[String, Array[String]]
class Helper
# @param hostname [String]
# @param domain [String]
# @return [Boolean]
def self.fqdn_valid?: (String hostname, String domain) -> bool
# @param ip [String]
# @return [Boolean]
def self.ip_valid?: (String ip) -> bool
# @param username [String]
# @param password [String]
# @param users [Hash]
# @return [Boolean]
def self.user_allowed?: (String username, String password, users users) -> bool
# @param hostname [String]
# @param myips [Array]
# @param hosts [Hash]
# @return [Boolean]
def self.changed?: (String hostname, Array[String] myips, hosts hosts) -> bool
# @param operation [String]
# @param block [Proc]
# @return [void]
def self.span: (String operation) { (untyped) -> untyped } -> untyped
end
end

View File

@@ -1,19 +0,0 @@
module Dyndnsd
module Responder
class DynDNSStyle
def initialize: (_App app) -> void
def call: (env env) -> response?
private
def decorate_dyndnsd_response: (int status_code, headers headers, Array[untyped] body) -> response?
def decorate_other_response: (int status_code, headers headers, Array[untyped] _body) -> response?
def get_success_body: (Array[Symbol] changes, Array[string] myips) -> string
def error_response_map: () -> Hash[string, response]
end
end
end

View File

@@ -1,19 +0,0 @@
module Dyndnsd
module Responder
class RestStyle
def initialize: (_App app) -> void
def call: (env env) -> response?
private
def decorate_dyndnsd_response: (int status_code, headers headers, Array[untyped] body) -> response?
def decorate_other_response: (int status_code, headers headers, Array[untyped] _body) -> response?
def get_success_body: (Array[Symbol] changes, Array[string] myips) -> string
def error_response_map: () -> Hash[string, response]
end
end
end

View File

@@ -1,17 +0,0 @@
module Dyndnsd
class TextfileReporter
attr_reader file: String
def initialize: (String file, ?Hash[Symbol, untyped] options) -> void
def start: () -> void
def stop: () -> void
def restart: () -> void
def write: () -> void
def write_metric: (File file, String base_name, untyped metric, Array[Symbol] keys, Array[Symbol] snapshot_keys) -> void
end
end

View File

@@ -1,9 +0,0 @@
module Dyndnsd
module Updater
class CommandWithBindZone
def initialize: (String domain, Hash[String, untyped] updater_params) -> void
def update: (Dyndnsd::Database db) -> void
end
end
end

View File

@@ -1,39 +0,0 @@
module Dyndnsd
module Updater
class ZoneTransferServer
DEFAULT_SERVER_LISTENS: Array[String]
def initialize: (String domain, Hash[String, untyped] updater_params) -> void
def update: (Dyndnsd::Database db) -> void
# converts into suitable parameter form for Async::DNS::Resolver or Async::DNS::Server
#
# @param endpoint_list [Array<String>]
# @return [Array{Array{Object}}]
def self.parse_endpoints: (Array[String] endpoint_list) -> Array[Array[untyped]]
private
# creates correct Resolv::DNS::Resource object for IP address type
#
# @param ip_string [String]
# @return [Resolv::DNS::Resource::IN::A,Resolv::DNS::Resource::IN::AAAA]
def create_addr_rr_for_ip: (String ip_string) -> untyped
def send_dns_notify: () -> void
end
class ZoneTransferServerHelper #< Async::DNS::Server
attr_accessor axfr_rrs: untyped
def initialize: (untyped endpoints, String domain) -> void
# @param name [String]
# @param resource_class [Resolv::DNS::Resource]
# Since solargraph cannot parse this: param transaction [Async::DNS::Transaction]
# @return [void]
def process: (String name, untyped resource_class, untyped transaction) -> void
end
end
end

View File

@@ -1,3 +0,0 @@
module Dyndnsd
VERSION: ::String
end