mirror of
https://github.com/cmur2/dyndnsd.git
synced 2025-08-08 08:33:56 +02:00
Compare commits
14 Commits
Author | SHA1 | Date | |
---|---|---|---|
16706071b7 | |||
43f089ce70 | |||
![]() |
15c3e587ff | ||
![]() |
b438ed097f | ||
![]() |
337c779410 | ||
b004b4d1e7 | |||
3cbc0a3f01 | |||
c675a347d1 | |||
![]() |
70ec21af94 | ||
![]() |
920d82f073 | ||
![]() |
dee9beb4e0 | ||
![]() |
08e92a0772 | ||
![]() |
eb1c107bf3 | ||
![]() |
a75d9dc5e6 |
21
.github/workflows/cd.yml
vendored
21
.github/workflows/cd.yml
vendored
@@ -14,13 +14,22 @@ jobs:
|
||||
- name: Extract dyndnsd version from tag name
|
||||
run: |
|
||||
echo "DYNDNSD_VERSION=${GITHUB_REF#refs/*/v}" >> $GITHUB_ENV
|
||||
|
||||
# https://github.com/marketplace/actions/build-and-push-docker-images
|
||||
- name: Build and push Docker image for dyndnsd ${{ env.DYNDNSD_VERSION }}
|
||||
uses: docker/build-push-action@v1
|
||||
- name: Set up Docker Buildx
|
||||
uses: docker/setup-buildx-action@v1
|
||||
|
||||
- name: Login to Docker Hub
|
||||
uses: docker/login-action@v1
|
||||
with:
|
||||
username: cmur2
|
||||
password: ${{ secrets.DOCKER_TOKEN }}
|
||||
repository: cmur2/dyndnsd
|
||||
path: docker
|
||||
build_args: DYNDNSD_VERSION=${{ env.DYNDNSD_VERSION }}
|
||||
tag_with_ref: true
|
||||
|
||||
- name: Build and push Docker image for dyndnsd ${{ env.DYNDNSD_VERSION }}
|
||||
uses: docker/build-push-action@v2
|
||||
with:
|
||||
context: docker
|
||||
build-args: |
|
||||
DYNDNSD_VERSION=${{ env.DYNDNSD_VERSION }}
|
||||
push: true
|
||||
tags: cmur2/dyndnsd:v${{ env.DYNDNSD_VERSION }}
|
||||
|
3
.github/workflows/ci.yml
vendored
3
.github/workflows/ci.yml
vendored
@@ -16,6 +16,9 @@ jobs:
|
||||
strategy:
|
||||
matrix:
|
||||
ruby-version:
|
||||
- '2.5'
|
||||
- '2.6'
|
||||
- '2.7'
|
||||
- '3.0'
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
|
@@ -3,7 +3,7 @@ require:
|
||||
- rubocop-rspec
|
||||
|
||||
AllCops:
|
||||
TargetRubyVersion: '3.0'
|
||||
TargetRubyVersion: '2.5'
|
||||
NewCops: enable
|
||||
|
||||
Layout/EmptyLineAfterGuardClause:
|
||||
|
18
CHANGELOG.md
18
CHANGELOG.md
@@ -1,5 +1,23 @@
|
||||
# Changelog
|
||||
|
||||
## 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)
|
||||
|
||||
OTHER:
|
||||
|
14
Rakefile
14
Rakefile
@@ -26,19 +26,7 @@ task :hadolint do
|
||||
sh 'docker run --rm -i hadolint/hadolint:v1.18.0 hadolint --ignore DL3018 - < docker/Dockerfile'
|
||||
end
|
||||
|
||||
desc 'Run experimental steep type checker'
|
||||
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]
|
||||
task default: [:rubocop, :spec, 'bundle:audit', :solargraph]
|
||||
|
||||
desc 'Run all tasks desired for CI'
|
||||
task ci: ['solargraph:init', :default, :hadolint]
|
||||
|
11
Steepfile
11
Steepfile
@@ -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
|
@@ -1,12 +1,12 @@
|
||||
FROM alpine:3.13
|
||||
FROM alpine:3.13.4
|
||||
|
||||
EXPOSE 5353 8080
|
||||
|
||||
ARG DYNDNSD_VERSION=3.0.0
|
||||
ARG DYNDNSD_VERSION=3.3.3
|
||||
|
||||
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 --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} && \
|
||||
# set timezone to Berlin
|
||||
cp /usr/share/zoneinfo/Europe/Berlin /etc/localtime && \
|
||||
|
@@ -25,7 +25,7 @@ Gem::Specification.new do |s|
|
||||
s.executables = ['dyndnsd']
|
||||
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 'jaeger-client', '~> 1.1.0'
|
||||
@@ -36,13 +36,12 @@ Gem::Specification.new do |s|
|
||||
s.add_runtime_dependency 'webrick', '>= 1.6.1'
|
||||
|
||||
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 'rake'
|
||||
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-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 'steep', '~> 0.39.0'
|
||||
end
|
||||
|
@@ -276,7 +276,7 @@ module Dyndnsd
|
||||
reporter = Metriks::Reporter::Graphite.new(host, port, options)
|
||||
reporter.start
|
||||
elsif config['textfile']
|
||||
file = (config['textfile']['file'] || '/tmp/dyndnsd-metrics.prom').to_s
|
||||
file = config['textfile']['file'] || '/tmp/dyndnsd-metrics.prom'
|
||||
options = {}
|
||||
options[:prefix] = config['textfile']['prefix'] if config['textfile']['prefix']
|
||||
reporter = Dyndnsd::TextfileReporter.new(file, options)
|
||||
|
@@ -33,7 +33,6 @@ module Dyndnsd
|
||||
when 422
|
||||
error_response_map[headers['X-DynDNS-Response']]
|
||||
end
|
||||
# TODO: possible nil response!
|
||||
end
|
||||
|
||||
# @param status_code [Integer]
|
||||
@@ -47,7 +46,6 @@ module Dyndnsd
|
||||
when 401
|
||||
[status_code, headers, ['badauth']]
|
||||
end
|
||||
# TODO: possible nil response!
|
||||
end
|
||||
|
||||
# @param changes [Array<Symbol>]
|
||||
|
@@ -33,7 +33,6 @@ module Dyndnsd
|
||||
when 422
|
||||
error_response_map[headers['X-DynDNS-Response']]
|
||||
end
|
||||
# TODO: possible nil response!
|
||||
end
|
||||
|
||||
# @param status_code [Integer]
|
||||
@@ -47,7 +46,6 @@ module Dyndnsd
|
||||
when 401
|
||||
[status_code, headers, ['Unauthorized']]
|
||||
end
|
||||
# TODO: possible nil response!
|
||||
end
|
||||
|
||||
# @param changes [Array<Symbol>]
|
||||
|
@@ -91,7 +91,7 @@ module Dyndnsd
|
||||
end
|
||||
end
|
||||
|
||||
# @param file [File]
|
||||
# @param file [String]
|
||||
# @param base_name [String]
|
||||
# @param metric [Object]
|
||||
# @param keys [Array<Symbol>]
|
||||
|
@@ -1,5 +1,5 @@
|
||||
# frozen_string_literal: true
|
||||
|
||||
module Dyndnsd
|
||||
VERSION = '3.3.0'
|
||||
VERSION = '3.3.3'
|
||||
end
|
||||
|
@@ -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
|
@@ -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
|
@@ -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
|
@@ -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
|
@@ -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
|
@@ -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
|
@@ -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
|
@@ -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
|
@@ -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
|
@@ -1,3 +0,0 @@
|
||||
module Dyndnsd
|
||||
VERSION: ::String
|
||||
end
|
Reference in New Issue
Block a user