-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathmain.go
40 lines (33 loc) · 809 Bytes
/
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
package main
import (
"fmt"
"github.com/fedir/yrank/youtube"
)
func main() {
// Getting configuration from configuration files and from CLI parameters
c := configuration()
cid, pid, of, s, m, d := cliParameters()
if d {
fmt.Printf("API key: %s\n", c.apikey)
}
// Statistics retrieve from Youtube
var rankedVideos []youtube.VideoStatistics
if cid != "" {
if d {
fmt.Printf("Channel ID: %s\n", cid)
}
rankedVideos = youtube.ChannelStatistics(cid, c.apikey, d)
} else if pid != "" {
if d {
fmt.Printf("Playlist ID: %s\n", pid)
}
rankedVideos = youtube.PlaylistStatistics(pid, c.apikey, "", d)
}
// Sorting
youtube.SortBy(rankedVideos, s)
// Limiting number of results
if m > 0 && m <= len(rankedVideos) {
rankedVideos = rankedVideos[:m]
}
print(rankedVideos, of)
}