summaryrefslogtreecommitdiff
path: root/d1pkgweb.go
blob: 09fe67574da2975c01ecfa417e73930c915e7528 (plain)
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
package main

import (
	"bufio"
	"compress/gzip"
	"d1pkgweb/deb822"
	"fmt"
	"net/http"
	"os"
)

func main() {

	args := os.Args

	if len(args) < 2 {
		fmt.Printf("Usage: %s <filein>\n", args[0])
		return
	}

	confFile := args[1]
	conf := readConfig(confFile)

	//fmt.Printf("Got config: %s\n", *conf)

	for _, relCfg := range conf.PkgSets { // For each release...
		for _, suiteCfg := range relCfg.Suites { // For each suite of the release
			suite := suiteCfg.Name
			for _, component := range suiteCfg.Components { // For each component in the suite
				fullURL := fmt.Sprintf("%s/%s", relCfg.RepoURL, component.URL)
				fmt.Fprintf(os.Stderr, "Processing: %s\n", fullURL)
				f, err := http.Get(fullURL)
				if err != nil {
					fmt.Fprintf(os.Stderr, "...Ignoring %s\n", fullURL)
				} else {
					uncompressed, err := gzip.NewReader(f.Body)
					if err != nil {
						fmt.Fprintf(os.Stderr, "error uncompressing %s\n", fullURL)
						continue
					}
					r := bufio.NewScanner(uncompressed)
					for s, err := deb822.ScanStanza(r); s["Package"] != ""; s, err = deb822.ScanStanza(r) {
						if err == nil {
							deb822.Stanza2HtmlPage(s, pkgTempl, ".", suite, component.Name)
						} else {
							fmt.Printf("error: %s\n", err)
						}
					}
				}
			}
		}
	}
}