aboutsummaryrefslogtreecommitdiffhomepage
path: root/storage/storage.go
blob: f7a06b4d182bb28a0293db34a32a88be2ae73d16 (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
// 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 storage

import (
	"database/sql"

	// Postgresql driver import
	_ "github.com/lib/pq"
	"github.com/miniflux/miniflux/logger"
)

// Storage handles all operations related to the database.
type Storage struct {
	db *sql.DB
}

// Close closes all database connections.
func (s *Storage) Close() {
	s.db.Close()
}

// NewStorage returns a new Storage.
func NewStorage(databaseURL string, maxOpenConns int) *Storage {
	db, err := sql.Open("postgres", databaseURL)
	if err != nil {
		logger.Fatal("[Storage] Unable to connect to the database: %v", err)
	}

	db.SetMaxOpenConns(maxOpenConns)
	db.SetMaxIdleConns(2)

	return &Storage{db: db}
}