aboutsummaryrefslogtreecommitdiff
blob: b07d78ea70927740d2ce5b095525bb019c182bf2 (plain)
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
// Used to show the landing page of the application

package recent

import (
	"archives/pkg/cache"
	"archives/pkg/config"
	"archives/pkg/database"
	"archives/pkg/models"
	"net/http"
	"time"
)

// Show renders a template to show the landing page of the application
func Show(w http.ResponseWriter, r *http.Request) {
	templateData := cache.Get("/recent")
	if templateData == nil {
		http.NotFound(w,r)
		return
	}
	renderRecentTemplate(w, templateData)
}

func ComputeTemplateData() interface{} {
	var mailingLists []models.MailingList

	for _, mailingList := range config.IndexMailingLists() {
		var messages []*models.Message
		database.DBCon.Model(&messages).
			Where("list = ?", mailingList[0]).
			Where("not date is null").
			Order("date DESC").
			Limit(5).
			Select()

		mailingLists = append(mailingLists, models.MailingList{
			Name:        mailingList[0],
			Description: mailingList[1],
			Messages:    messages,
		})
	}

	return struct {
		MailingLists   []models.MailingList
		PopularThreads []*models.Message
		MessageCount   string
		CurrentMonth   string
	}{
		MailingLists:   mailingLists,
		CurrentMonth:   time.Now().Format("2006-01"),
	}
}