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
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
|
//
// rhimportd
//
// The Radio Helsinki Rivendell Import Daemon
//
//
// Copyright (C) 2015-2016 Christian Pointner <equinox@helsinki.at>
//
// This file is part of rhimportd.
//
// rhimportd 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
// any later version.
//
// rhimportd 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 rhimportd. If not, see <http://www.gnu.org/licenses/>.
//
package rhimport
import (
"fmt"
"io/ioutil"
"log"
"net/http"
"os"
"path"
"code.helsinki.at/rhrd-go/rddb"
"github.com/andelf/go-curl"
)
const (
CART_MAX = 999999
CUT_MAX = 999
// not sure if rdxport.cgi can handle filesizes > MAX(INT32)
FILESIZE_MAX = (2 * 1024 * 1024 * 1024) - 1
// TODO: make this configurable
ARCHIV_HOST = "bigmama.helsinki.at"
ARCHIV_USER = "rhimport"
ARCHIV_BASE_PATH = "/srv/_nfs4_root_/archiv/ogg-flac"
)
var (
bool2str = map[bool]string{false: "0", true: "1"}
)
func Init(stdlog, dbglog *log.Logger) {
curl.GlobalInit(curl.GLOBAL_ALL)
fetcherInit(stdlog, dbglog)
}
type ProgressCB func(step int, stepName string, current, total float64, title string, cart, cut uint, userdata interface{}) bool
type DoneCB func(result Result, userdata interface{}) bool
type ProgressData struct {
Step int
StepName string
Current float64
Total float64
Title string
Cart uint
Cut uint
}
type Result struct {
ResponseCode int
ErrorString string
Cart uint
Cut uint
SourceFile string
}
type FilePolicy int
const (
Delete FilePolicy = iota
Keep
)
func (p *FilePolicy) String() string {
switch *p {
case Delete:
return "delete"
case Keep:
return "keep"
}
return "unknown"
}
func (p *FilePolicy) FromString(str string) error {
switch str {
case "delete":
*p = Delete
case "keep":
*p = Keep
default:
return fmt.Errorf("must be on of: auto, keep, delete")
}
return nil
}
type AttachmentChunk struct {
Data []byte
Error error
}
type Context struct {
conf *Config
db *rddb.DB
stdlog *log.Logger
dbglog *log.Logger
UserName string
Password string
Trusted bool
ShowId uint
ClearShowCarts bool
ShowCarts []uint
GroupName string
Cart uint
ClearCart bool
Cut uint
Channels uint
NormalizationLevel int
AutotrimLevel int
UseMetaData bool
SourceUri string
AttachmentChan chan AttachmentChunk
FetchConverter string
ExtraMetaData map[string]string
OrigFilename string
Title string
WorkDir string
SourceFile string
SourceFilePolicy FilePolicy
LoudnessCorr float64
ProgressCallBack ProgressCB
ProgressCallBackData interface{}
Cancel <-chan bool
}
func NewContext(conf *Config, db *rddb.DB, stdlog, dbglog *log.Logger) *Context {
if stdlog == nil {
stdlog = log.New(ioutil.Discard, "", 0)
}
if dbglog == nil {
dbglog = log.New(ioutil.Discard, "", 0)
}
ctx := &Context{}
ctx.conf = conf
ctx.db = db
ctx.stdlog = stdlog
ctx.dbglog = dbglog
ctx.UserName = ""
ctx.Password = ""
ctx.Trusted = false
ctx.ShowId = 0
ctx.ClearShowCarts = false
ctx.GroupName = ""
ctx.Cart = 0
ctx.ClearCart = false
ctx.Cut = 0
ctx.Channels = conf.ImportParamDefaults.Channels
ctx.NormalizationLevel = conf.ImportParamDefaults.NormalizationLevel
ctx.AutotrimLevel = conf.ImportParamDefaults.AutotrimLevel
ctx.UseMetaData = conf.ImportParamDefaults.UseMetaData
ctx.AttachmentChan = make(chan AttachmentChunk, 32)
ctx.FetchConverter = "ffmpeg-bs1770"
ctx.ExtraMetaData = make(map[string]string)
ctx.OrigFilename = ""
ctx.Title = ""
ctx.SourceFile = ""
ctx.LoudnessCorr = 0.0
ctx.SourceFilePolicy = Delete
ctx.ProgressCallBack = nil
ctx.Cancel = nil
return ctx
}
func (ctx *Context) SanityCheck() error {
if ctx.UserName == "" {
return fmt.Errorf("empty Username is not allowed")
}
if ctx.Password == "" && !ctx.Trusted {
return fmt.Errorf("empty Password on untrusted control interface is not allowed")
}
if ctx.WorkDir == "" {
return fmt.Errorf("empty WorkDir is not allowed")
}
if ctx.ShowId != 0 {
if ctx.ShowId != 0 && ctx.ShowId > CART_MAX {
return fmt.Errorf("ShowId %d is outside of allowed range (0 < show-id < %d)", ctx.ShowId, CART_MAX)
}
if err := ctx.getShowInfo(); err != nil {
return err
}
if ctx.Cart == 0 {
return nil
}
if ctx.Cart > CART_MAX {
return fmt.Errorf("Cart %d is outside of allowed range (0 < cart < %d)", ctx.Cart, CART_MAX)
}
for _, cart := range ctx.ShowCarts {
if cart == ctx.Cart {
return nil
}
}
return fmt.Errorf("Cart %d is not part of the show with show-id %d", ctx.Cart, ctx.ShowId)
}
if ctx.GroupName != "" {
ismusic, err := ctx.checkMusicGroup()
if err != nil {
return err
}
if !ismusic {
return fmt.Errorf("supplied GroupName '%s' is not a music pool", ctx.GroupName)
}
if ctx.Cart != 0 || ctx.Cut != 0 {
return fmt.Errorf("Cart and Cut must not be supplied when importing into a music group")
}
return ctx.getMusicInfo()
}
if ctx.Cart == 0 {
return fmt.Errorf("either ShowId, PoolName or CartNumber must be supplied")
}
if ctx.Cart > CART_MAX {
return fmt.Errorf("Cart %d is outside of allowed range (0 < cart < %d)", ctx.Cart, CART_MAX)
}
if ctx.Cut != 0 && ctx.Cut > CUT_MAX {
return fmt.Errorf("Cut %d is outside of allowed range (0 < cart < %d)", ctx.Cut, CUT_MAX)
}
if ctx.Channels != 1 && ctx.Channels != 2 {
return fmt.Errorf("channles must be 1 or 2")
}
return nil
}
func (ctx *Context) CreateTempWorkDir() (err error) {
ctx.WorkDir, err = ioutil.TempDir(ctx.conf.TempDir, "rhimport-")
return
}
func (ctx *Context) SwitchTempWorkDir(newDir string) {
ctx.RemoveTempWorkDir()
ctx.WorkDir = newDir
return
}
func (ctx *Context) RemoveTempWorkDir() {
if err := os.RemoveAll(ctx.WorkDir); err != nil {
ctx.stdlog.Printf("Error removing WorkDir: %s", err)
}
return
}
func (ctx *Context) getPassword(cached bool) (err error) {
ctx.Password, err = ctx.db.GetPassword(ctx.UserName, cached)
return
}
func (ctx *Context) CheckPassword() (bool, error) {
return ctx.db.CheckPassword(ctx.UserName, ctx.Password)
}
func (ctx *Context) getGroupOfCart() (err error) {
ctx.GroupName, err = ctx.db.GetGroupOfCart(ctx.Cart)
return
}
func (ctx *Context) getShowInfo() (err error) {
ctx.GroupName, ctx.NormalizationLevel, ctx.AutotrimLevel, ctx.ShowCarts, err = ctx.db.GetShowInfo(ctx.ShowId)
ctx.Channels = 2
ctx.UseMetaData = true
return
}
func (ctx *Context) checkMusicGroup() (bool, error) {
return ctx.db.CheckMusicGroup(ctx.GroupName)
}
func (ctx *Context) getMusicInfo() (err error) {
ctx.NormalizationLevel, ctx.AutotrimLevel, err = ctx.db.GetMusicInfo(ctx.GroupName)
ctx.Channels = 2
ctx.UseMetaData = true
ctx.Cart = 0
ctx.Cut = 0
return
}
func (ctx *Context) updateCutCartTitle() (err error) {
filename := ctx.OrigFilename
if filename == "" {
filename = ctx.SourceFile
}
return ctx.db.UpdateCutCartTitle(ctx.Cart, ctx.Cut, ctx.GroupName, filename)
}
func (ctx *Context) reportProgress(step int, stepName string, current, total float64) {
if ctx.ProgressCallBack != nil {
title := ctx.Title
if title == "" {
title = path.Base(ctx.OrigFilename)
if title == "" || title == "." {
title = path.Base(ctx.SourceFile)
}
}
if keep := ctx.ProgressCallBack(step, stepName, current, total, title, ctx.Cart, ctx.Cut, ctx.ProgressCallBackData); !keep {
ctx.ProgressCallBack = nil
}
}
}
func (ctx *Context) isCanceled() bool {
return ctx.Cancel != nil && len(ctx.Cancel) > 0
}
func RemoveCart(cart uint, rdxportEndpoint, username, password string) (err error) {
conf := &Config{}
conf.RDXportEndpoint = rdxportEndpoint
ctx := NewContext(conf, nil, nil, nil)
ctx.Cart = cart
ctx.UserName = username
ctx.Password = password
res := &Result{ResponseCode: http.StatusOK}
if err = removeCart(ctx, res); err != nil {
return err
}
if res.ResponseCode != http.StatusOK {
return fmt.Errorf("Error removing cart %d: %s", cart, res.ErrorString)
}
return nil
}
|