aboutsummaryrefslogtreecommitdiffhomepage
path: root/server/ui/controller/controller.go
blob: 4aa608562ae534a080d5231baa567a1d7b3df5b0 (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
53
54
55
56
57
58
59
60
61
// Copyright 2017 Frédéric Guillot. All rights reserved.
// Use of this source code is governed by the Apache 2.0
// license that can be found in the LICENSE file.

package controller

import (
	"github.com/miniflux/miniflux2/model"
	"github.com/miniflux/miniflux2/reader/feed"
	"github.com/miniflux/miniflux2/reader/opml"
	"github.com/miniflux/miniflux2/scheduler"
	"github.com/miniflux/miniflux2/server/core"
	"github.com/miniflux/miniflux2/storage"
)

type tplParams map[string]interface{}

func (t tplParams) Merge(d tplParams) tplParams {
	for k, v := range d {
		t[k] = v
	}

	return t
}

// Controller contains all HTTP handlers for the user interface.
type Controller struct {
	store       *storage.Storage
	pool        *scheduler.WorkerPool
	feedHandler *feed.Handler
	opmlHandler *opml.Handler
}

func (c *Controller) getCommonTemplateArgs(ctx *core.Context) (tplParams, error) {
	user := ctx.LoggedUser()
	builder := c.store.GetEntryQueryBuilder(user.ID, user.Timezone)
	builder.WithStatus(model.EntryStatusUnread)

	countUnread, err := builder.CountEntries()
	if err != nil {
		return nil, err
	}

	params := tplParams{
		"menu":        "",
		"user":        user,
		"countUnread": countUnread,
		"csrf":        ctx.CsrfToken(),
	}
	return params, nil
}

// NewController returns a new Controller.
func NewController(store *storage.Storage, pool *scheduler.WorkerPool, feedHandler *feed.Handler, opmlHandler *opml.Handler) *Controller {
	return &Controller{
		store:       store,
		pool:        pool,
		feedHandler: feedHandler,
		opmlHandler: opmlHandler,
	}
}