Albirew/nyaa-pantsu
Archivé
1
0
Bifurcation 0
Ce dépôt a été archivé le 2022-05-07. Vous pouvez voir ses fichiers ou le cloner, mais pas ouvrir de ticket ou de demandes d'ajout, ni soumettre de changements.
nyaa-pantsu/controllers/database_dump_handler.go
akuma06 97b3a1d7ea Remove common package
Common is no more a thing
Use of TorrentParam instead of SearchParam now
Common structs for search are exported in utils/search/structs
Util has been renamed utils
2017-07-02 16:54:55 +02:00

53 lignes
1,2 Kio
Go

package controllers
import (
"fmt"
"os"
"path/filepath"
"time"
"github.com/NyaaPantsu/nyaa/models"
"github.com/NyaaPantsu/nyaa/utils/log"
"github.com/NyaaPantsu/nyaa/utils/metainfo"
"github.com/gin-gonic/gin"
)
const (
// DatabaseDumpPath : Location of database dumps
DatabaseDumpPath = "./public/dumps"
// GPGPublicKeyPath : Location of the GPG key
GPGPublicKeyPath = "./public/gpg/gpg.key"
)
// DatabaseDumpHandler : Controller for getting database dumps
func DatabaseDumpHandler(c *gin.Context) {
// db params url
// TODO Use config from cli
files, _ := filepath.Glob(filepath.Join(DatabaseDumpPath, "*.torrent"))
var dumpsJSON []models.DatabaseDumpJSON
// TODO Filter *.torrent files
for _, f := range files {
// TODO Use config from cli
file, err := os.Open(f)
if err != nil {
continue
}
var tf metainfo.TorrentFile
err = tf.Decode(file)
if err != nil {
log.CheckError(err)
fmt.Println(err)
continue
}
dump := models.DatabaseDump{
Date: time.Now(),
Filesize: int64(tf.TotalSize()),
Name: tf.TorrentName(),
TorrentLink: "/dbdumps/" + file.Name()}
dumpsJSON = append(dumpsJSON, dump.ToJSON())
}
databaseDumpTemplate(c, dumpsJSON, "/gpg/gpg.pub")
}