yats.git

ref: 4ae770aeff928f5a20c713f8b6fb2709da3c1a14

server/db/connection.go


 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
/**
 * Yats - yats
 *
 * This file is licensed under the Affero General Public License version 3 or
 * later. See the COPYING file.
 *
 * @author Paolo Lulli <kevwe.com>
 * @copyright Paolo Lulli 2024
 */

package db

import (
	"yats-server/config"

	"github.com/gocql/gocql"
)

var Session *gocql.Session

func InitializeDb(configuration config.Configuration) *gocql.Session {
	cluster := gocql.NewCluster(configuration.DB_HOST)
	cluster.Authenticator = gocql.PasswordAuthenticator{Username: configuration.DB_USERNAME, Password: configuration.DB_PASSWORD}
	cluster.Keyspace = configuration.DB_NAME

	Session, _ := cluster.CreateSession()

	return Session
}