about summary refs log tree commit diff stats
path: root/archive/1.vm/072recipe.cc
Commit message (Expand)AuthorAgeFilesLines
* 5852Kartik Agaram2020-01-011-0/+711
9-05-21 04:13:21 -0400 committer Ben Morrison <ben@gbmor.dev> 2019-05-21 04:13:21 -0400 database push/pull functions' href='/gbmor/getwtxt/commit/cache.go?h=v0.5.0&id=c896e6b85ff32c3c0c45336de8b75752a31574ca'>c896e6b ^
25972a6 ^
7410b8c ^
2b0d4a5 ^
2b0d4a5 ^
4695425 ^
c896e6b ^
c896e6b ^

fdd9bd0 ^






4695425 ^



4695425 ^


fdd9bd0 ^



4695425 ^
e9d4a6b ^
4695425 ^





fdd9bd0 ^


7410b8c ^

979e1f9 ^

7410b8c ^

fdd9bd0 ^
c6ced3e ^




d6d0c18 ^
c38385c ^
c6ced3e ^
78f4d8a ^
c6ced3e ^
c896e6b ^
d6d0c18 ^
c896e6b ^

78f4d8a ^
c896e6b ^
c896e6b ^

2b0d4a5 ^



69217dd ^
979e1f9 ^


69217dd ^
979e1f9 ^
6c1b09b ^
979e1f9 ^
6c1b09b ^
25972a6 ^
979e1f9 ^
f316396 ^

25972a6 ^

78f4d8a ^
2b0d4a5 ^
25972a6 ^


2b0d4a5 ^
979e1f9 ^

6c1b09b ^
2b0d4a5 ^




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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117


















                                                                    
                                                    

        
               
                       
                   
            
              
              

 






                                            



                                                           


                     



                                               
                          
                             





                          


                                          

                                         

                                                                                         

 
                    




                                                  
                             
                                         
                                       
                                                    
                                     
         
                               

                                                 
                                                                                                                  
         

 



                                               
                          


                                     
 
                                                                 
                       
                                                                         
                       
 
                                                             

                                       

                                         
                                                                                      
 


                                                          
 

                                                                             
                               




                                                      
/*
Copyright (c) 2019 Ben Morrison (gbmor)

This file is part of Getwtxt.

Getwtxt is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.

Getwtxt is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
GNU General Public License for more details.

You should have received a copy of the GNU General Public License
along with Getwtxt.  If not, see <https://www.gnu.org/licenses/>.
*/

package svc // import "git.sr.ht/~gbmor/getwtxt/svc"

import (
	"bytes"
	"html/template"
	"io/ioutil"
	"os"
	"sync"
	"time"
)

// These functions and types pertain to the
// in-memory data being used by the registry
// service, such as:
//  - static assets (index.html, style.css)
//  - the registry itself (users, etc)
//  - list of other registries submitted

// RemoteRegistries holds a list of remote registries to
// periodically scrape for new users. The remote registries
// must have been added via POST like a user.
type RemoteRegistries struct {
	List []string
}

// staticAssets holda the rendered landing page
// as a byte slice, its on-disk mod time, the
// assets/style.css file as a byte slice, and
// its on-disk mod time.
type staticAssets struct {
	mu       sync.RWMutex
	index    []byte
	indexMod time.Time
	css      []byte
	cssMod   time.Time
}

// Renders the landing page template using
// the info supplied in the configuration
// file's "Instance" section.
func initTemplates() *template.Template {
	confObj.Mu.RLock()
	defer confObj.Mu.RUnlock()
	return template.Must(template.ParseFiles(confObj.AssetsDir + "/tmpl/index.html"))
}

func cacheUpdate() {
	// This clusterfuck of mutex read locks is
	// necessary to avoid deadlock. This mess
	// also avoids a panic that would occur
	// should twtxtCache be written to during
	// this loop.
	twtxtCache.Mu.RLock()
	for k := range twtxtCache.Users {
		twtxtCache.Mu.RUnlock()
		errLog("", twtxtCache.UpdateUser(k))
		twtxtCache.Mu.RLock()
	}
	twtxtCache.Mu.RUnlock()

	for _, v := range remoteRegistries.List {
		errLog("Error refreshing local copy of remote registry data: ", twtxtCache.CrawlRemoteRegistry(v))
	}
}

// pingAssets checks if the local static assets
// need to be re-cached. If they do, they are
// pulled back into memory from disk.
func pingAssets() {
	confObj.Mu.RLock()
	defer confObj.Mu.RUnlock()
	staticCache.mu.Lock()
	defer staticCache.mu.Unlock()

	cssStat, err := os.Stat(confObj.AssetsDir + "/style.css")
	errLog("", err)
	indexStat, err := os.Stat(confObj.AssetsDir + "/tmpl/index.html")
	errLog("", err)

	if !staticCache.indexMod.Equal(indexStat.ModTime()) {
		tmpls = initTemplates()

		var b []byte
		buf := bytes.NewBuffer(b)
		errLog("", tmpls.ExecuteTemplate(buf, "index.html", confObj.Instance))

		staticCache.index = buf.Bytes()
		staticCache.indexMod = indexStat.ModTime()
	}

	if !staticCache.cssMod.Equal(cssStat.ModTime()) {
		css, err := ioutil.ReadFile(confObj.AssetsDir + "/style.css")
		errLog("", err)

		staticCache.css = css
		staticCache.cssMod = cssStat.ModTime()
	}
}