organization: just create a opds package
This commit is contained in:
parent
8e62288b0b
commit
53dc6a84cc
12
main.go
12
main.go
@ -30,6 +30,7 @@ import (
|
||||
"path/filepath"
|
||||
"time"
|
||||
|
||||
"github.com/dubyte/dir2opds/opds"
|
||||
"golang.org/x/tools/blog/atom"
|
||||
)
|
||||
|
||||
@ -96,7 +97,6 @@ func getContent(req *http.Request, dirpath string) (result []byte, err error) {
|
||||
if isAcquisition(dirpath) {
|
||||
acFeed := &acquisitionFeed{&feed, "http://purl.org/dc/terms/", "http://opds-spec.org/2010/catalog"}
|
||||
result, err = xml.MarshalIndent(acFeed, " ", " ")
|
||||
|
||||
} else {
|
||||
result, err = xml.MarshalIndent(feed, " ", " ")
|
||||
}
|
||||
@ -104,23 +104,23 @@ func getContent(req *http.Request, dirpath string) (result []byte, err error) {
|
||||
}
|
||||
|
||||
func makeFeed(dirpath string, req *http.Request) atom.Feed {
|
||||
feedBuilder := FeedBuilder.
|
||||
feedBuilder := opds.FeedBuilder.
|
||||
ID(req.URL.Path).
|
||||
Title("Catalog in " + req.URL.Path).
|
||||
Author(AuthorBuilder.Name(author).Email(authorEmail).URI(authorURI).Build()).
|
||||
Author(opds.AuthorBuilder.Name(author).Email(authorEmail).URI(authorURI).Build()).
|
||||
Updated(time.Now()).
|
||||
AddLink(LinkBuilder.Rel("start").Href("/").Type(navegationType).Build())
|
||||
AddLink(opds.LinkBuilder.Rel("start").Href("/").Type(navegationType).Build())
|
||||
|
||||
fis, _ := ioutil.ReadDir(dirpath)
|
||||
for _, fi := range fis {
|
||||
linkIsAcquisition := isAcquisition(filepath.Join(dirpath, fi.Name()))
|
||||
feedBuilder = feedBuilder.
|
||||
AddEntry(EntryBuilder.
|
||||
AddEntry(opds.EntryBuilder.
|
||||
ID(req.URL.Path + fi.Name()).
|
||||
Title(fi.Name()).
|
||||
Updated(time.Now()).
|
||||
Published(time.Now()).
|
||||
AddLink(LinkBuilder.
|
||||
AddLink(opds.LinkBuilder.
|
||||
Rel(getRel(fi.Name(), linkIsAcquisition)).
|
||||
Title(fi.Name()).
|
||||
Href(getHref(req, fi.Name())).
|
||||
|
@ -1,4 +1,4 @@
|
||||
package main
|
||||
package opds
|
||||
|
||||
import (
|
||||
"github.com/lann/builder"
|
3
opds/doc.go
Normal file
3
opds/doc.go
Normal file
@ -0,0 +1,3 @@
|
||||
// Package opds provides fluent immutable builders that help fill the structures
|
||||
// that can be marshalled to xml (opds 1.1)
|
||||
package opds
|
@ -1,4 +1,4 @@
|
||||
package main
|
||||
package opds
|
||||
|
||||
import (
|
||||
"time"
|
@ -1,4 +1,4 @@
|
||||
package main
|
||||
package opds
|
||||
|
||||
import (
|
||||
"time"
|
@ -1,4 +1,4 @@
|
||||
package main
|
||||
package opds
|
||||
|
||||
import (
|
||||
"github.com/lann/builder"
|
@ -1,4 +1,4 @@
|
||||
package main
|
||||
package opds
|
||||
|
||||
import (
|
||||
"github.com/lann/builder"
|
Loading…
Reference in New Issue
Block a user