unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
blob 076fd4159fe0138e64e3bdd57e74072f6cbc8e17 7856 bytes (raw)
name: gnu/services/upnp.scm 	 # note: path name is non-authoritative(*)

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
 
;;; GNU Guix --- Functional package management for GNU
;;; Copyright © 2024 Fabio Natali <me@fabionatali.com>
;;;
;;; This file is part of GNU Guix.
;;;
;;; GNU Guix is free software; you can redistribute it and/or modify it
;;; under the terms of the GNU General Public License as published by
;;; the Free Software Foundation; either version 3 of the License, or (at
;;; your option) any later version.
;;;
;;; GNU Guix is distributed in the hope that it will be useful, but
;;; WITHOUT ANY WARRANTY; without even the implied warranty of
;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
;;; GNU General Public License for more details.
;;;
;;; You should have received a copy of the GNU General Public License
;;; along with GNU Guix.  If not, see <http://www.gnu.org/licenses/>.

(define-module (gnu services upnp)
  #:use-module (gnu build linux-container)
  #:use-module (gnu packages admin)
  #:use-module (gnu packages upnp)
  #:use-module (gnu services admin)
  #:use-module (gnu services base)
  #:use-module (gnu services shepherd)
  #:use-module (gnu services)
  #:use-module (gnu system file-systems)
  #:use-module (gnu system shadow)
  #:use-module (guix gexp)
  #:use-module (guix least-authority)
  #:use-module (guix records)
  #:export (readymedia-configuration
            readymedia-configuration-readymedia
            readymedia-configuration-friendly-name
            readymedia-configuration-media-dirs
            readymedia-configuration-port
            readymedia-configuration-extra-config
            readymedia-configuration?
            readymedia-media-dir
            readymedia-media-dir-path
            readymedia-media-dir-type
            readymedia-media-dir?
            readymedia-service-type))

;;; Commentary:
;;;
;;; UPnP services.
;;;
;;; Code:

(define %readymedia-user-account "readymedia")
(define %readymedia-user-group "readymedia")

(define-record-type* <readymedia-configuration>
  readymedia-configuration make-readymedia-configuration
  readymedia-configuration?
  (readymedia readymedia-configuration-readymedia
              (default readymedia))
  (cache-dir readymedia-configuration-cache-dir
             (default "/var/cache/readymedia"))
  (log-dir readymedia-configuration-log-dir
           (default "/var/log/readymedia"))
  (friendly-name readymedia-configuration-friendly-name
                 (default #f))
  (media-dirs readymedia-configuration-media-dirs)
  (port readymedia-configuration-port
        (default #f))
  (extra-config readymedia-configuration-extra-config
                (default '())))

;; READYMEDIA-MEDIA-DIR is a record that indicates path and media type of a
;; media folder. The media type string can be empty (no media type specified),
;; one character (a single media type, e.g. "A" for audio only), or more
;; characters (mixed media types, e.g. "PV" for pictures and video). The allowed
;; individual types are A for audio, P for pictures, V for video.
(define-record-type* <readymedia-media-dir>
  readymedia-media-dir make-readymedia-media-dir
  readymedia-media-dir?
  (path readymedia-media-dir-path)
  (type readymedia-media-dir-type (default "")))

(define (readymedia-media-dir->string entry)
  "Convert a media-dir ENTRY to a ReadyMedia/MiniDLNA media dir string."
  (format #f
          "media_dir=~a,~a"
          (readymedia-media-dir-type entry)
          (readymedia-media-dir-path entry)))

(define (readymedia-configuration->config-file config)
  "Return the ReadyMedia/MiniDLNA configuration file corresponding to CONFIG."
  (let ((friendly-name (readymedia-configuration-friendly-name config))
        (media-dirs (readymedia-configuration-media-dirs config))
        (cache-dir (readymedia-configuration-cache-dir config))
        (log-dir (readymedia-configuration-log-dir config))
        (port (readymedia-configuration-port config))
        (extra-config (readymedia-configuration-extra-config config)))
    (mixed-text-file
     "minidlna.conf"
     "db_dir=" cache-dir "\n"
     "log_dir=" log-dir "\n"
     (if friendly-name (format #f "friendly_name=~a\n" friendly-name) "")
     (if port (format #f "port=~a\n" port) "")
     (string-join (map readymedia-media-dir->string media-dirs) "\n" 'suffix)
     (string-join extra-config "\n" 'suffix))))

(define (readymedia-shepherd-service config)
  "Return a least-authority ReadyMedia/MiniDLNA Shepherd service."
  (let* ((minidlna-conf (readymedia-configuration->config-file config))
         (media-dirs (readymedia-configuration-media-dirs config))
         (cache-dir (readymedia-configuration-cache-dir config))
         (log-dir (readymedia-configuration-log-dir config))
         (readymedia (least-authority-wrapper
                      (file-append
                       (readymedia-configuration-readymedia config)
                       "/sbin/minidlnad")
                      #:name "minidlna"
                      #:mappings (cons* (file-system-mapping
                                         (source cache-dir)
                                         (target source)
                                         (writable? #t))
                                        (file-system-mapping
                                         (source log-dir)
                                         (target source)
                                         (writable? #t))
                                        (file-system-mapping
                                         (source minidlna-conf)
                                         (target source))
                                        (map (lambda (e)
                                               (file-system-mapping
                                                (source
                                                 (readymedia-media-dir-path e))
                                                (target source)
                                                (writable? #f)))
                                             media-dirs))
                      #:namespaces (delq 'net %namespaces))))
    (list (shepherd-service
           (documentation "Run the ReadyMedia/MiniDLNA daemon.")
           (provision '(readymedia))
           (requirement '(networking user-processes))
           (start #~(make-forkexec-constructor
                     ;; "-S" is to daemonise minidlnad.
                     (list #$readymedia "-f" #$minidlna-conf "-S")
                     #:user "readymedia"
                     #:group "readymedia"))
           (stop #~(make-kill-destructor))))))

(define readymedia-accounts
  (list (user-group
         (name %readymedia-user-group)
         (system? #t))
        (user-account
         (name %readymedia-user-account)
         (group %readymedia-user-group)
         (system? #t)
         (comment "ReadyMedia/MiniDLNA daemon user")
         (home-directory "/var/empty")
         (shell (file-append shadow "/sbin/nologin")))))

(define (readymedia-activation config)
  "Set up directories for ReadyMedia/MiniDLNA."
  (let ((cache-dir (readymedia-configuration-cache-dir config))
        (log-dir (readymedia-configuration-log-dir config)))
    #~(begin
        (use-modules (guix build utils))
        (define %user (getpw #$%readymedia-user-account))
        (mkdir-p #$cache-dir)
        (chown #$cache-dir (passwd:uid %user) (passwd:gid %user))
        (mkdir-p #$log-dir)
        (chown #$log-dir (passwd:uid %user) (passwd:gid %user)))))

(define readymedia-service-type
  (service-type
   (name 'readymedia)
   (extensions
    (list
     (service-extension shepherd-root-service-type readymedia-shepherd-service)
     (service-extension account-service-type (const readymedia-accounts))
     (service-extension activation-service-type readymedia-activation)))
   (description
    "Run @command{minidlnad}, the ReadyMedia/MiniDLNA media server.")))

debug log:

solving 076fd4159f ...
found 076fd4159f in https://yhetil.org/guix-patches/87h6bhicgf.fsf@fabionatali.com/

applying [1/1] https://yhetil.org/guix-patches/87h6bhicgf.fsf@fabionatali.com/
diff --git a/gnu/services/upnp.scm b/gnu/services/upnp.scm
new file mode 100644
index 0000000000..076fd4159f

Checking patch gnu/services/upnp.scm...
Applied patch gnu/services/upnp.scm cleanly.

index at:
100644 076fd4159fe0138e64e3bdd57e74072f6cbc8e17	gnu/services/upnp.scm

(*) Git path names are given by the tree(s) the blob belongs to.
    Blobs themselves have no identifier aside from the hash of its contents.^

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/guix.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).