Archived
1
0
This repository has been archived on 2023-08-12. You can view files and clone it, but cannot push or open issues or pull requests.
nntpchan/contrib/backends/srndv2/src/srnd/cache_interface.go

59 lines
1.4 KiB
Go
Raw Normal View History

package srnd
import (
"log"
"net/http"
2018-03-04 07:03:10 -05:00
"strconv"
)
2017-10-10 12:17:38 -04:00
type CacheHandler interface {
http.Handler
GetI18N(r *http.Request) *I18N
}
type CacheInterface interface {
RegenAll()
RegenFrontPage()
2017-04-04 07:48:45 -04:00
RegenOnModEvent(newsgroup, msgid, root string, page int)
RegenerateBoard(group string)
Regen(msg ArticleEntry)
DeleteThreadMarkup(root_post_id string)
DeleteBoardMarkup(group string)
Start()
Close()
2017-10-10 12:17:38 -04:00
GetHandler() CacheHandler
SetRequireCaptcha(required bool)
}
//TODO only pass needed config
func NewCache(cache_type, host, port, user, password string, cache_config, config map[string]string, db Database, store ArticleStore) CacheInterface {
prefix := config["prefix"]
webroot := config["webroot"]
2017-10-10 12:17:38 -04:00
translations := config["translations"]
threads := mapGetInt(config, "regen_threads", 1)
name := config["name"]
attachments := mapGetInt(config, "allow_files", 1) == 1
if cache_type == "file" {
return NewFileCache(prefix, webroot, name, threads, attachments, db, store)
}
if cache_type == "null" {
2017-10-10 12:17:38 -04:00
return NewNullCache(prefix, webroot, name, translations, attachments, db, store)
}
if cache_type == "varnish" {
url := cache_config["url"]
bind_addr := cache_config["bind"]
2018-03-04 07:03:10 -05:00
workers, _ := strconv.Atoi(cache_config["workers"])
if workers <= 0 {
workers = 4
}
return NewVarnishCache(url, bind_addr, prefix, webroot, name, translations, workers, attachments, db, store)
}
log.Fatalf("invalid cache type: %s", cache_type)
return nil
}