-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathexport.go
237 lines (201 loc) · 5.65 KB
/
export.go
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
package main
import (
"errors"
"fmt"
"io"
"net/url"
"os"
"path/filepath"
"strings"
"time"
)
const (
M3U = iota
EXT
WPL
ZPL
)
const (
COPY_NONE = iota
COPY_PLAYLIST
COPY_ITUNES
COPY_FLAT
)
type playlistWriter func(io.Writer, *ExportSettings, *Playlist) error
type trackWriter func(io.Writer, *ExportSettings, *Playlist, *Track, string) error
type ExportSettings struct {
Library *Library
Playlists []Playlist
ExportType int
OutputPath string
Extension string
CopyType int
OriginalMusicPath string
NewMusicPath string
PathSeparator string
}
func ExportPlaylists(exportSettings *ExportSettings, library *Library) error {
start := time.Now()
for _, playlist := range exportSettings.Playlists {
// Skip Folders
if playlist.Folder {
continue
}
fmt.Printf("Exporting Playlist %v\n", playlist.Name)
filePath := ""
if includeFolders && playlist.ParentPersistentId != "" {
filePath = buildPlaylistPath(playlist, library)
}
if filePath != "" {
os.MkdirAll(filepath.Join(exportSettings.OutputPath, filePath), 0777)
}
fileName := filepath.Join(exportSettings.OutputPath, filePath, playlist.SafeName()+"."+exportSettings.Extension)
file, err := os.OpenFile(fileName, os.O_WRONLY|os.O_CREATE|os.O_TRUNC, 0666)
if err != nil {
return err
}
defer file.Close()
var header playlistWriter
var entry trackWriter
var footer playlistWriter
switch exportSettings.ExportType {
case M3U:
header, entry, footer = m3uPlaylistWriters()
case EXT:
header, entry, footer = extPlaylistWriters()
case WPL:
header, entry, footer = wplPlaylistWriters()
case ZPL:
header, entry, footer = zplPlaylistWriters()
default:
return errors.New("export type not implemented")
}
// Write out the Header
err = header(file, exportSettings, &playlist)
if err != nil {
return err
}
// Write the body of the playlist
for _, track := range playlist.Tracks(exportSettings.Library) {
sourceFileLocation, errParse := url.QueryUnescape(track.Location)
sourceFileLocation = trimTrackLocationPrefix(sourceFileLocation)
destFileLocation, err := copyTrack(library, exportSettings, &playlist, &track, sourceFileLocation)
if err != nil {
fmt.Printf("Unable to copy file %v: %v\n", sourceFileLocation, err.Error())
continue
}
if errParse != nil {
fmt.Printf("Skipping Track %v because an error occured parsing the location: %v\n", track.Name, errParse.Error())
continue
}
// Replace the default path separator with the one specified
formattedDest := strings.ReplaceAll(destFileLocation, string(filepath.Separator), exportSettings.PathSeparator)
err = entry(file, exportSettings, &playlist, &track, formattedDest)
if err != nil {
return err
}
}
// Write the footer.
err = footer(file, exportSettings, &playlist)
if err != nil {
return err
}
}
fmt.Printf("\n\nExport Complete.\n")
fmt.Println(time.Since(start).String())
return nil
}
// copyTrack copies a file from the provided sourceFileLocation to another location. The new location
// depends on the CopyType selected in exportSettings. If COPY_NONE is selected, the sourceFileLocation is returned.
func copyTrack(library *Library, exportSettings *ExportSettings, playlist *Playlist, track *Track, sourceFileLocation string) (string, error) {
var destinationPath string
if exportSettings.NewMusicPath != "" {
sourceFileLocation = strings.Replace(sourceFileLocation, exportSettings.OriginalMusicPath, exportSettings.NewMusicPath, 1)
}
switch exportSettings.CopyType {
case COPY_PLAYLIST:
filePath := ""
if includeFolders && playlist.ParentPersistentId != "" {
filePath = buildPlaylistPath(*playlist, library)
}
destinationPath = filepath.Join(exportSettings.OutputPath, filePath, playlist.SafeName())
case COPY_ITUNES:
destinationPath = filepath.Join(exportSettings.OutputPath, track.Artist, track.Album)
case COPY_FLAT:
destinationPath = exportSettings.OutputPath
case COPY_NONE:
return sourceFileLocation, nil
default:
return "", errors.New("unknown copy type")
}
dest := filepath.Join(destinationPath, filepath.Base(sourceFileLocation))
if err := copyFile(sourceFileLocation, dest); err != nil {
return "", err
}
return dest, nil
}
func copyFile(src, dest string) error {
src = strings.Replace(src, "file://", "", 1)
sourceFileInfo, err := os.Stat(src)
if err != nil {
return err
}
if !sourceFileInfo.Mode().IsRegular() {
return errors.New("source file is not a regular file")
}
_, err = os.Stat(dest)
if err == nil {
// No need to copy.
return nil
} else if !os.IsNotExist(err) {
return err
}
destDir := filepath.Dir(dest)
_, err = os.Stat(destDir)
if err != nil {
if os.IsNotExist(err) {
err = os.MkdirAll(destDir, 0777)
if err != nil {
return nil
}
} else {
return err
}
}
return copyFileData(src, dest)
}
func copyFileData(src, dest string) error {
in, err := os.Open(src)
if err != nil {
return err
}
defer in.Close()
out, err := os.Create(dest)
if err != nil {
return err
}
defer out.Close()
if _, err = io.Copy(out, in); err != nil {
return err
}
return out.Sync()
}
// buildPlaylistPath checks to see if the playlist has any parent folders.
// If so, it returns the full path of those folders.
func buildPlaylistPath(playlist Playlist, library *Library) string {
if playlist.ParentPersistentId == "" {
if playlist.Folder {
return playlist.SafeName()
}
return ""
}
parent, ok := library.PlaylistIdMap[playlist.ParentPersistentId]
if !ok {
return ""
}
pathSeg := ""
if playlist.Folder {
pathSeg = playlist.SafeName()
}
return filepath.Join(buildPlaylistPath(parent, library), pathSeg)
}