-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.go
52 lines (43 loc) · 1.02 KB
/
main.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
package main
import (
"bufio"
"flag"
"log"
"os"
"github.com/dlmw/dplaylist/youtube"
)
var filePath string
func init() {
const (
filePathShort = "f"
filePathLong = "file"
filePathDefault = "youtube.txt"
filePathUsage = "The path of the file containing YouTube IDs. " + filePathShort + " and " + filePathLong + " are equivalent."
)
flag.StringVar(&filePath, filePathLong, filePathDefault, filePathUsage)
flag.StringVar(&filePath, filePathShort, filePathDefault, filePathUsage)
}
func main() {
flag.Parse()
lines, err := readLines(filePath)
if err != nil {
panic(err)
}
playlistURL := youtube.CreatePlaylist(lines)
log.Println(playlistURL)
}
// readLines reads a whole file into memory
// and returns a slice of its lines.
func readLines(path string) ([]string, error) {
file, err := os.Open(path)
if err != nil {
return nil, err
}
defer file.Close()
var lines []string
scanner := bufio.NewScanner(file)
for scanner.Scan() {
lines = append(lines, scanner.Text())
}
return lines, scanner.Err()
}