Compare commits
No commits in common. "master" and "1.0.0" have entirely different histories.
28
.drone.yml
Normal file
28
.drone.yml
Normal file
|
@ -0,0 +1,28 @@
|
|||
kind: pipeline
|
||||
type: docker
|
||||
name: default
|
||||
|
||||
steps:
|
||||
- name: validate
|
||||
image: golang
|
||||
commands:
|
||||
- go build
|
||||
- go test
|
||||
- name: deploy
|
||||
image: golang
|
||||
environment:
|
||||
SSH_PRIVATE_KEY:
|
||||
from_secret: ssh_private_key
|
||||
commands:
|
||||
- go build
|
||||
- apt-get update; apt-get install -y rsync
|
||||
- mkdir ~/.ssh
|
||||
- echo "$SSH_PRIVATE_KEY" > ~/.ssh/id_rsa; chmod 600 ~/.ssh/id_rsa
|
||||
- ssh-keyscan -t rsa factorio.blackolivepineapple.pizza >> ~/.ssh/known_hosts
|
||||
- ssh service@factorio.blackolivepineapple.pizza sudo service factorio-site stop || true
|
||||
- rsync --rsync-path="sudo rsync" --archive --verbose --compress . service@factorio.blackolivepineapple.pizza:/opt/factorio-site/
|
||||
- ssh service@factorio.blackolivepineapple.pizza sudo mv /opt/factorio-site/factorio-site.service /etc/systemd/system/
|
||||
- ssh service@factorio.blackolivepineapple.pizza sudo systemctl daemon-reload
|
||||
- ssh service@factorio.blackolivepineapple.pizza sudo service factorio-site start
|
||||
when:
|
||||
branch: master
|
7
Makefile
7
Makefile
|
@ -1,7 +0,0 @@
|
|||
minecraft-site: minecraft-site.go index.html go.mod go.sum
|
||||
go build -tags netgo -ldflags '-extldflags "-static"'
|
||||
|
||||
.PHONY: deploy
|
||||
deploy: minecraft-site
|
||||
rsync --rsync-path="sudo -u minecraft rsync" minecraft-site zirconium:/home/minecraft/minecraft-site
|
||||
ssh zirconium sudo systemctl restart minecraft-site.service
|
|
@ -2,7 +2,6 @@ package main
|
|||
|
||||
import (
|
||||
"crypto/tls"
|
||||
_ "embed"
|
||||
"encoding/json"
|
||||
"fmt"
|
||||
"html/template"
|
||||
|
@ -36,9 +35,6 @@ type pageData struct {
|
|||
Servers []server
|
||||
}
|
||||
|
||||
//go:embed index.html
|
||||
var indexhtml string
|
||||
|
||||
func main() {
|
||||
|
||||
// Parse config file
|
||||
|
@ -67,16 +63,12 @@ func main() {
|
|||
|
||||
// Set up templates
|
||||
fmt.Print("Parsing templates...\n")
|
||||
t, err := template.New("").Parse(indexhtml)
|
||||
t, err := template.ParseFiles("templates/index.html")
|
||||
if err != nil {
|
||||
log.Fatalf("Error parsing HTML template: %v\n", err)
|
||||
}
|
||||
|
||||
http.HandleFunc("/", func(w http.ResponseWriter, r *http.Request) {
|
||||
if r.URL.Path != "/" {
|
||||
http.NotFound(w, r)
|
||||
return
|
||||
}
|
||||
|
||||
// Update servers with current data
|
||||
for i, s := range config.Servers {
|
||||
|
@ -93,23 +85,6 @@ func main() {
|
|||
}
|
||||
})
|
||||
|
||||
http.HandleFunc("/data.json", func(w http.ResponseWriter, r *http.Request) {
|
||||
// Update servers with current data
|
||||
for i, s := range config.Servers {
|
||||
// TODO: Query instead (opportunistically?) to get mod lists, etc
|
||||
config.Servers[i].Status, err = minequery.Ping17(s.Host, s.Port)
|
||||
if err != nil {
|
||||
log.Printf("Error querying server: %v", err)
|
||||
}
|
||||
}
|
||||
msg, err := json.Marshal(config.Servers)
|
||||
if err != nil {
|
||||
http.Error(w, err.Error(), 500)
|
||||
}
|
||||
w.Header().Set("Content-Type", "application/json")
|
||||
w.Write(msg)
|
||||
})
|
||||
|
||||
// Serve backup directory
|
||||
if serveBackups { // TODO: add HTML
|
||||
http.Handle("/backups/", http.StripPrefix("/backups/", http.FileServer(http.Dir(config.BackupDir))))
|
||||
|
|
|
@ -55,9 +55,6 @@
|
|||
{{end}}
|
||||
</section>
|
||||
{{end}}
|
||||
<p class="light">
|
||||
This page maintained by chandlerswift's <a href="https://git.chandlerswift.com/chandlerswift/minecraft-site">minecraft server list</a>.
|
||||
<a href="/data.json">API at /data.json</a>.
|
||||
</p>
|
||||
<p class="light">This page maintained by chandlerswift's <a href="https://git.chandlerswift.com/chandlerswift/minecraft-site">minecraft server list</a>.</p>
|
||||
</body>
|
||||
</html>
|
Loading…
Reference in a new issue