mirror of
https://github.com/cgrates/cgrates.git
synced 2026-02-11 18:16:24 +05:00
1156 lines
30 KiB
Go
1156 lines
30 KiB
Go
/*
|
|
Real-time Online/Offline Charging System (OCS) for Telecom & ISP environments
|
|
Copyright (C) ITsysCOM GmbH
|
|
|
|
This program 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.
|
|
|
|
This program 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 this program. If not, see <http://www.gnu.org/licenses/>
|
|
*/
|
|
|
|
package engine
|
|
|
|
import (
|
|
"bytes"
|
|
"database/sql"
|
|
"fmt"
|
|
"os"
|
|
"path"
|
|
"strings"
|
|
"time"
|
|
|
|
"github.com/cgrates/cgrates/utils"
|
|
"gorm.io/gorm"
|
|
)
|
|
|
|
type SQLImpl interface {
|
|
extraFieldsExistsQry(string) string
|
|
extraFieldsValueQry(string, string) string
|
|
notExtraFieldsExistsQry(string) string
|
|
notExtraFieldsValueQry(string, string) string
|
|
}
|
|
|
|
type SQLStorage struct {
|
|
Db *sql.DB
|
|
db *gorm.DB
|
|
StorDB
|
|
SQLImpl
|
|
}
|
|
|
|
func (sqls *SQLStorage) Close() {
|
|
sqls.Db.Close()
|
|
// sqls.db
|
|
}
|
|
|
|
func (sqls *SQLStorage) ExportGormDB() *gorm.DB {
|
|
return sqls.db
|
|
}
|
|
|
|
func (sqls *SQLStorage) Flush(scriptsPath string) (err error) {
|
|
for _, scriptName := range []string{utils.CreateCDRsTablesSQL, utils.CreateTariffPlanTablesSQL} {
|
|
if err := sqls.CreateTablesFromScript(path.Join(scriptsPath, scriptName)); err != nil {
|
|
return err
|
|
}
|
|
}
|
|
if _, err := sqls.Db.Query(fmt.Sprintf("SELECT 1 FROM %s", utils.CDRsTBL)); err != nil {
|
|
return err
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (rs *SQLStorage) SelectDatabase(dbName string) (err error) {
|
|
return
|
|
}
|
|
|
|
func (sqls *SQLStorage) GetKeysForPrefix(prefix string) ([]string, error) {
|
|
return nil, utils.ErrNotImplemented
|
|
}
|
|
|
|
func (SQLStorage) RemoveKeysForPrefix(string) error {
|
|
return utils.ErrNotImplemented
|
|
}
|
|
|
|
func (sqls *SQLStorage) CreateTablesFromScript(scriptPath string) error {
|
|
fileContent, err := os.ReadFile(scriptPath)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
qries := strings.Split(string(fileContent), ";") // Script has normally multiple queries separate by ';' go driver does not understand this so we handle it here
|
|
for _, qry := range qries {
|
|
qry = strings.TrimSpace(qry) // Avoid empty queries
|
|
if len(qry) == 0 {
|
|
continue
|
|
}
|
|
if _, err := sqls.Db.Exec(qry); err != nil {
|
|
return err
|
|
}
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (sqls *SQLStorage) IsDBEmpty() (resp bool, err error) {
|
|
tbls := []string{
|
|
utils.TBLTPTimings, utils.TBLTPDestinations,
|
|
utils.TBLTPResources, utils.TBLTPStats, utils.TBLTPThresholds,
|
|
utils.TBLTPFilters, utils.SessionCostsTBL, utils.CDRsTBL,
|
|
utils.TBLVersions, utils.TBLTPRoutes, utils.TBLTPAttributes, utils.TBLTPChargers,
|
|
utils.TBLTPDispatchers, utils.TBLTPDispatcherHosts,
|
|
}
|
|
for _, tbl := range tbls {
|
|
if sqls.db.Migrator().HasTable(tbl) {
|
|
return false, nil
|
|
}
|
|
|
|
}
|
|
return true, nil
|
|
}
|
|
|
|
// update
|
|
// Return a list with all TPids defined in the system, even if incomplete, isolated in some table.
|
|
func (sqls *SQLStorage) GetTpIds(colName string) ([]string, error) {
|
|
var rows *sql.Rows
|
|
var err error
|
|
qryStr := fmt.Sprintf(" (SELECT tpid FROM %s)", colName)
|
|
if colName == "" {
|
|
|
|
for _, clNm := range []string{
|
|
utils.TBLTPTimings,
|
|
utils.TBLTPDestinations,
|
|
utils.TBLTPResources,
|
|
utils.TBLTPStats,
|
|
utils.TBLTPThresholds,
|
|
utils.TBLTPFilters,
|
|
utils.TBLTPRoutes,
|
|
utils.TBLTPAttributes,
|
|
utils.TBLTPChargers,
|
|
utils.TBLTPDispatchers,
|
|
utils.TBLTPDispatcherHosts,
|
|
} {
|
|
qryStr += fmt.Sprintf("UNION (SELECT tpid FROM %s)", clNm)
|
|
}
|
|
qryStr = strings.TrimPrefix(qryStr, "UNION ")
|
|
}
|
|
rows, err = sqls.Db.Query(qryStr)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
defer rows.Close()
|
|
ids := make([]string, 0)
|
|
i := 0
|
|
for rows.Next() {
|
|
i++ //Keep here a reference so we know we got at least one
|
|
var id string
|
|
err = rows.Scan(&id)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
ids = append(ids, id)
|
|
}
|
|
if i == 0 {
|
|
return nil, nil
|
|
}
|
|
return ids, nil
|
|
}
|
|
|
|
// ToDo: TEST
|
|
func (sqls *SQLStorage) GetTpTableIds(tpid, table string, distinct utils.TPDistinctIds,
|
|
filters map[string]string, pagination *utils.PaginatorWithSearch) ([]string, error) {
|
|
qry := fmt.Sprintf("SELECT DISTINCT %s FROM %s where tpid='%s'", distinct, table, tpid)
|
|
for key, value := range filters {
|
|
if key != "" && value != "" {
|
|
qry += fmt.Sprintf(" AND %s='%s'", key, value)
|
|
}
|
|
}
|
|
if pagination != nil {
|
|
if len(pagination.Search) != 0 {
|
|
qry += fmt.Sprintf(" AND (%s LIKE '%%%s%%'", distinct[0], pagination.Search)
|
|
for _, d := range distinct[1:] {
|
|
qry += fmt.Sprintf(" OR %s LIKE '%%%s%%'", d, pagination.Search)
|
|
}
|
|
qry += ")"
|
|
}
|
|
if pagination.Paginator != nil {
|
|
if pagination.Limit != nil { // Keep Postgres compatibility by adding offset only when limit defined
|
|
qry += fmt.Sprintf(" LIMIT %d", *pagination.Limit)
|
|
if pagination.Offset != nil {
|
|
qry += fmt.Sprintf(" OFFSET %d", *pagination.Offset)
|
|
}
|
|
}
|
|
}
|
|
}
|
|
rows, err := sqls.Db.Query(qry)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
defer rows.Close()
|
|
ids := []string{}
|
|
i := 0
|
|
for rows.Next() {
|
|
i++ //Keep here a reference so we know we got at least one
|
|
|
|
cols, err := rows.Columns() // Get the column names; remember to check err
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
vals := make([]string, len(cols)) // Allocate enough values
|
|
ints := make([]interface{}, len(cols)) // Make a slice of []interface{}
|
|
for i := range ints {
|
|
ints[i] = &vals[i] // Copy references into the slice
|
|
}
|
|
|
|
err = rows.Scan(ints...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
finalID := vals[0]
|
|
if len(vals) > 1 {
|
|
finalID = strings.Join(vals, utils.ConcatenatedKeySep)
|
|
}
|
|
ids = append(ids, finalID)
|
|
}
|
|
if i == 0 {
|
|
return nil, nil
|
|
}
|
|
return ids, nil
|
|
}
|
|
|
|
func (sqls *SQLStorage) RemTpData(table, tpid string, args map[string]string) error {
|
|
tx := sqls.db.Begin()
|
|
|
|
if len(table) == 0 { // Remove tpid out of all tables
|
|
for _, tblName := range []string{utils.TBLTPTimings, utils.TBLTPDestinations,
|
|
utils.TBLTPResources, utils.TBLTPStats, utils.TBLTPThresholds,
|
|
utils.TBLTPFilters, utils.TBLTPRoutes, utils.TBLTPAttributes,
|
|
utils.TBLTPChargers, utils.TBLTPDispatchers, utils.TBLTPDispatcherHosts, utils.TBLTPAccountProfiles,
|
|
utils.TBLTPActionProfiles, utils.TBLTPRateProfiles} {
|
|
if err := tx.Table(tblName).Where("tpid = ?", tpid).Delete(nil).Error; err != nil {
|
|
tx.Rollback()
|
|
return err
|
|
}
|
|
}
|
|
tx.Commit()
|
|
return nil
|
|
}
|
|
// Remove from a single table
|
|
tx = tx.Table(table).Where("tpid = ?", tpid)
|
|
// Compose filters
|
|
for key, value := range args {
|
|
tx = tx.Where(key+" = ?", value)
|
|
}
|
|
if err := tx.Delete(nil).Error; err != nil {
|
|
tx.Rollback()
|
|
return err
|
|
}
|
|
tx.Commit()
|
|
return nil
|
|
}
|
|
|
|
func (sqls *SQLStorage) SetTPTimings(timings []*utils.ApierTPTiming) error {
|
|
if len(timings) == 0 {
|
|
return nil
|
|
}
|
|
|
|
tx := sqls.db.Begin()
|
|
for _, timing := range timings {
|
|
if err := tx.Where(&TimingMdl{Tpid: timing.TPid, Tag: timing.ID}).Delete(TimingMdl{}).Error; err != nil {
|
|
tx.Rollback()
|
|
return err
|
|
}
|
|
t := APItoModelTiming(timing)
|
|
if err := tx.Create(&t).Error; err != nil {
|
|
tx.Rollback()
|
|
return err
|
|
}
|
|
}
|
|
tx.Commit()
|
|
return nil
|
|
}
|
|
|
|
func (sqls *SQLStorage) SetTPDestinations(dests []*utils.TPDestination) error {
|
|
if len(dests) == 0 {
|
|
return nil
|
|
}
|
|
tx := sqls.db.Begin()
|
|
for _, dst := range dests {
|
|
// Remove previous
|
|
if err := tx.Where(&DestinationMdl{Tpid: dst.TPid, Tag: dst.ID}).Delete(DestinationMdl{}).Error; err != nil {
|
|
tx.Rollback()
|
|
return err
|
|
}
|
|
for _, d := range APItoModelDestination(dst) {
|
|
if err := tx.Create(&d).Error; err != nil {
|
|
tx.Rollback()
|
|
return err
|
|
}
|
|
}
|
|
}
|
|
tx.Commit()
|
|
return nil
|
|
}
|
|
|
|
func (sqls *SQLStorage) SetTPResources(rls []*utils.TPResourceProfile) error {
|
|
if len(rls) == 0 {
|
|
return nil
|
|
}
|
|
tx := sqls.db.Begin()
|
|
for _, rl := range rls {
|
|
// Remove previous
|
|
if err := tx.Where(&ResourceMdl{Tpid: rl.TPid, ID: rl.ID}).Delete(ResourceMdl{}).Error; err != nil {
|
|
tx.Rollback()
|
|
return err
|
|
}
|
|
for _, mrl := range APItoModelResource(rl) {
|
|
if err := tx.Create(&mrl).Error; err != nil {
|
|
tx.Rollback()
|
|
return err
|
|
}
|
|
}
|
|
}
|
|
tx.Commit()
|
|
return nil
|
|
}
|
|
|
|
func (sqls *SQLStorage) SetTPStats(sts []*utils.TPStatProfile) error {
|
|
if len(sts) == 0 {
|
|
return nil
|
|
}
|
|
tx := sqls.db.Begin()
|
|
for _, stq := range sts {
|
|
// Remove previous
|
|
if err := tx.Where(&StatMdl{Tpid: stq.TPid, ID: stq.ID}).Delete(StatMdl{}).Error; err != nil {
|
|
tx.Rollback()
|
|
return err
|
|
}
|
|
for _, mst := range APItoModelStats(stq) {
|
|
if err := tx.Create(&mst).Error; err != nil {
|
|
tx.Rollback()
|
|
return err
|
|
}
|
|
}
|
|
}
|
|
tx.Commit()
|
|
return nil
|
|
}
|
|
|
|
func (sqls *SQLStorage) SetTPThresholds(ths []*utils.TPThresholdProfile) error {
|
|
if len(ths) == 0 {
|
|
return nil
|
|
}
|
|
tx := sqls.db.Begin()
|
|
for _, th := range ths {
|
|
// Remove previous
|
|
if err := tx.Where(&ThresholdMdl{Tpid: th.TPid, ID: th.ID}).Delete(ThresholdMdl{}).Error; err != nil {
|
|
tx.Rollback()
|
|
return err
|
|
}
|
|
for _, mst := range APItoModelTPThreshold(th) {
|
|
if err := tx.Create(&mst).Error; err != nil {
|
|
tx.Rollback()
|
|
return err
|
|
}
|
|
}
|
|
}
|
|
tx.Commit()
|
|
return nil
|
|
}
|
|
|
|
func (sqls *SQLStorage) SetTPFilters(ths []*utils.TPFilterProfile) error {
|
|
if len(ths) == 0 {
|
|
return nil
|
|
}
|
|
tx := sqls.db.Begin()
|
|
for _, th := range ths {
|
|
// Remove previous
|
|
if err := tx.Where(&FilterMdl{Tpid: th.TPid, ID: th.ID}).Delete(FilterMdl{}).Error; err != nil {
|
|
tx.Rollback()
|
|
return err
|
|
}
|
|
for _, mst := range APItoModelTPFilter(th) {
|
|
if err := tx.Create(&mst).Error; err != nil {
|
|
tx.Rollback()
|
|
return err
|
|
}
|
|
}
|
|
}
|
|
tx.Commit()
|
|
return nil
|
|
}
|
|
|
|
func (sqls *SQLStorage) SetTPRoutes(tpRoutes []*utils.TPRouteProfile) error {
|
|
if len(tpRoutes) == 0 {
|
|
return nil
|
|
}
|
|
tx := sqls.db.Begin()
|
|
for _, tpRoute := range tpRoutes {
|
|
// Remove previous
|
|
if err := tx.Where(&RouteMdl{Tpid: tpRoute.TPid, ID: tpRoute.ID}).Delete(RouteMdl{}).Error; err != nil {
|
|
tx.Rollback()
|
|
return err
|
|
}
|
|
for _, mst := range APItoModelTPRoutes(tpRoute) {
|
|
if err := tx.Create(&mst).Error; err != nil {
|
|
tx.Rollback()
|
|
return err
|
|
}
|
|
}
|
|
}
|
|
tx.Commit()
|
|
return nil
|
|
}
|
|
|
|
func (sqls *SQLStorage) SetTPAttributes(tpAttrs []*utils.TPAttributeProfile) error {
|
|
if len(tpAttrs) == 0 {
|
|
return nil
|
|
}
|
|
tx := sqls.db.Begin()
|
|
for _, stq := range tpAttrs {
|
|
// Remove previous
|
|
if err := tx.Where(&AttributeMdl{Tpid: stq.TPid, ID: stq.ID}).Delete(AttributeMdl{}).Error; err != nil {
|
|
tx.Rollback()
|
|
return err
|
|
}
|
|
for _, mst := range APItoModelTPAttribute(stq) {
|
|
if err := tx.Create(&mst).Error; err != nil {
|
|
tx.Rollback()
|
|
return err
|
|
}
|
|
}
|
|
}
|
|
tx.Commit()
|
|
return nil
|
|
}
|
|
|
|
func (sqls *SQLStorage) SetTPChargers(tpCPPs []*utils.TPChargerProfile) error {
|
|
if len(tpCPPs) == 0 {
|
|
return nil
|
|
}
|
|
tx := sqls.db.Begin()
|
|
for _, cpp := range tpCPPs {
|
|
// Remove previous
|
|
if err := tx.Where(&ChargerMdl{Tpid: cpp.TPid, ID: cpp.ID}).Delete(ChargerMdl{}).Error; err != nil {
|
|
tx.Rollback()
|
|
return err
|
|
}
|
|
for _, mst := range APItoModelTPCharger(cpp) {
|
|
if err := tx.Create(&mst).Error; err != nil {
|
|
tx.Rollback()
|
|
return err
|
|
}
|
|
}
|
|
}
|
|
tx.Commit()
|
|
return nil
|
|
}
|
|
|
|
func (sqls *SQLStorage) SetTPDispatcherProfiles(tpDPPs []*utils.TPDispatcherProfile) error {
|
|
if len(tpDPPs) == 0 {
|
|
return nil
|
|
}
|
|
tx := sqls.db.Begin()
|
|
for _, dpp := range tpDPPs {
|
|
// Remove previous
|
|
if err := tx.Where(&DispatcherProfileMdl{Tpid: dpp.TPid, ID: dpp.ID}).Delete(DispatcherProfileMdl{}).Error; err != nil {
|
|
tx.Rollback()
|
|
return err
|
|
}
|
|
for _, mst := range APItoModelTPDispatcherProfile(dpp) {
|
|
if err := tx.Create(&mst).Error; err != nil {
|
|
tx.Rollback()
|
|
return err
|
|
}
|
|
}
|
|
}
|
|
tx.Commit()
|
|
return nil
|
|
}
|
|
|
|
func (sqls *SQLStorage) SetTPDispatcherHosts(tpDPPs []*utils.TPDispatcherHost) error {
|
|
if len(tpDPPs) == 0 {
|
|
return nil
|
|
}
|
|
tx := sqls.db.Begin()
|
|
for _, dpp := range tpDPPs {
|
|
// Remove previous
|
|
if err := tx.Where(&DispatcherHostMdl{Tpid: dpp.TPid, ID: dpp.ID}).Delete(DispatcherHostMdl{}).Error; err != nil {
|
|
tx.Rollback()
|
|
return err
|
|
}
|
|
if err := tx.Create(APItoModelTPDispatcherHost(dpp)).Error; err != nil {
|
|
tx.Rollback()
|
|
return err
|
|
}
|
|
}
|
|
tx.Commit()
|
|
return nil
|
|
}
|
|
|
|
func (sqls *SQLStorage) SetTPRateProfiles(tpDPPs []*utils.TPRateProfile) error {
|
|
if len(tpDPPs) == 0 {
|
|
return nil
|
|
}
|
|
tx := sqls.db.Begin()
|
|
for _, dpp := range tpDPPs {
|
|
// Remove previous
|
|
if err := tx.Where(&RateProfileMdl{Tpid: dpp.TPid, ID: dpp.ID}).Delete(RateProfileMdl{}).Error; err != nil {
|
|
tx.Rollback()
|
|
return err
|
|
}
|
|
for _, mst := range APItoModelTPRateProfile(dpp) {
|
|
if err := tx.Create(&mst).Error; err != nil {
|
|
tx.Rollback()
|
|
return err
|
|
}
|
|
}
|
|
}
|
|
tx.Commit()
|
|
return nil
|
|
}
|
|
|
|
func (sqls *SQLStorage) SetTPActionProfiles(tpAps []*utils.TPActionProfile) error {
|
|
if len(tpAps) == 0 {
|
|
return nil
|
|
}
|
|
tx := sqls.db.Begin()
|
|
for _, tpAp := range tpAps {
|
|
// Remove previous
|
|
if err := tx.Where(&ActionProfileMdl{Tpid: tpAp.TPid, Tenant: tpAp.Tenant, ID: tpAp.ID}).Delete(ActionProfileMdl{}).Error; err != nil {
|
|
tx.Rollback()
|
|
return err
|
|
}
|
|
for _, mst := range APItoModelTPActionProfile(tpAp) {
|
|
if err := tx.Create(&mst).Error; err != nil {
|
|
tx.Rollback()
|
|
return err
|
|
}
|
|
}
|
|
}
|
|
tx.Commit()
|
|
return nil
|
|
}
|
|
|
|
func (sqls *SQLStorage) SetTPAccountProfiles(tpAps []*utils.TPAccountProfile) error {
|
|
if len(tpAps) == 0 {
|
|
return nil
|
|
}
|
|
tx := sqls.db.Begin()
|
|
for _, tpAp := range tpAps {
|
|
// Remove previous
|
|
if err := tx.Where(&AccountProfileMdl{Tpid: tpAp.TPid, Tenant: tpAp.Tenant, ID: tpAp.ID}).Delete(AccountProfileMdl{}).Error; err != nil {
|
|
tx.Rollback()
|
|
return err
|
|
}
|
|
for _, mst := range APItoModelTPAccountProfile(tpAp) {
|
|
if err := tx.Create(&mst).Error; err != nil {
|
|
tx.Rollback()
|
|
return err
|
|
}
|
|
}
|
|
}
|
|
tx.Commit()
|
|
return nil
|
|
}
|
|
|
|
func (sqls *SQLStorage) SetCDR(cdr *CDR, allowUpdate bool) error {
|
|
tx := sqls.db.Begin()
|
|
cdrSQL := cdr.AsCDRsql()
|
|
cdrSQL.CreatedAt = time.Now()
|
|
saved := tx.Save(cdrSQL)
|
|
if saved.Error != nil {
|
|
tx.Rollback()
|
|
if !allowUpdate {
|
|
if strings.Contains(saved.Error.Error(), "1062") || strings.Contains(saved.Error.Error(), "duplicate key") { // returns 1062/pq when key is duplicated
|
|
return utils.ErrExists
|
|
}
|
|
return saved.Error
|
|
}
|
|
tx = sqls.db.Begin()
|
|
cdrSQL.UpdatedAt = time.Now()
|
|
updated := tx.Model(&CDRsql{}).Where(
|
|
&CDRsql{Cgrid: cdr.CGRID, RunID: cdr.RunID, OriginID: cdr.OriginID}).Updates(cdrSQL.AsMapStringInterface())
|
|
if updated.Error != nil {
|
|
tx.Rollback()
|
|
return updated.Error
|
|
}
|
|
}
|
|
tx.Commit()
|
|
return nil
|
|
}
|
|
|
|
// GetCDRs has ability to remove the selected CDRs, count them or simply return them
|
|
// qryFltr.Unscoped will ignore soft deletes or delete records permanently
|
|
func (sqls *SQLStorage) GetCDRs(qryFltr *utils.CDRsFilter, remove bool) ([]*CDR, int64, error) {
|
|
var cdrs []*CDR
|
|
q := sqls.db.Table(utils.CDRsTBL)
|
|
if qryFltr.Unscoped {
|
|
q = q.Unscoped()
|
|
}
|
|
// Add filters, use in to replace the high number of ORs
|
|
if len(qryFltr.CGRIDs) != 0 {
|
|
q = q.Where("cgrid in (?)", qryFltr.CGRIDs)
|
|
}
|
|
if len(qryFltr.NotCGRIDs) != 0 {
|
|
q = q.Where("cgrid not in (?)", qryFltr.NotCGRIDs)
|
|
}
|
|
if len(qryFltr.RunIDs) != 0 {
|
|
q = q.Where("run_id in (?)", qryFltr.RunIDs)
|
|
}
|
|
if len(qryFltr.NotRunIDs) != 0 {
|
|
q = q.Where("run_id not in (?)", qryFltr.NotRunIDs)
|
|
}
|
|
if len(qryFltr.OriginIDs) != 0 {
|
|
q = q.Where("origin_id in (?)", qryFltr.OriginIDs)
|
|
}
|
|
if len(qryFltr.NotOriginIDs) != 0 {
|
|
q = q.Where("origin_id not in (?)", qryFltr.NotOriginIDs)
|
|
}
|
|
if len(qryFltr.ToRs) != 0 {
|
|
q = q.Where("tor in (?)", qryFltr.ToRs)
|
|
}
|
|
if len(qryFltr.NotToRs) != 0 {
|
|
q = q.Where("tor not in (?)", qryFltr.NotToRs)
|
|
}
|
|
if len(qryFltr.OriginHosts) != 0 {
|
|
q = q.Where("origin_host in (?)", qryFltr.OriginHosts)
|
|
}
|
|
if len(qryFltr.NotOriginHosts) != 0 {
|
|
q = q.Where("origin_host not in (?)", qryFltr.NotOriginHosts)
|
|
}
|
|
if qryFltr.AnswerTimeStart != nil && !qryFltr.AnswerTimeStart.IsZero() { // With IsZero we keep backwards compatible with APIerSv1
|
|
q = q.Where("answer_time >= ?", qryFltr.AnswerTimeStart)
|
|
}
|
|
if qryFltr.AnswerTimeEnd != nil && !qryFltr.AnswerTimeEnd.IsZero() {
|
|
q = q.Where("answer_time < ?", qryFltr.AnswerTimeEnd)
|
|
}
|
|
if len(qryFltr.Sources) != 0 {
|
|
q = q.Where("source in (?)", qryFltr.Sources)
|
|
}
|
|
if len(qryFltr.NotSources) != 0 {
|
|
q = q.Where("source not in (?)", qryFltr.NotSources)
|
|
}
|
|
if len(qryFltr.RequestTypes) != 0 {
|
|
q = q.Where("request_type in (?)", qryFltr.RequestTypes)
|
|
}
|
|
if len(qryFltr.NotRequestTypes) != 0 {
|
|
q = q.Where("request_type not in (?)", qryFltr.NotRequestTypes)
|
|
}
|
|
if len(qryFltr.Tenants) != 0 {
|
|
q = q.Where("tenant in (?)", qryFltr.Tenants)
|
|
}
|
|
if len(qryFltr.NotTenants) != 0 {
|
|
q = q.Where("tenant not in (?)", qryFltr.NotTenants)
|
|
}
|
|
if len(qryFltr.Categories) != 0 {
|
|
q = q.Where("category in (?)", qryFltr.Categories)
|
|
}
|
|
if len(qryFltr.NotCategories) != 0 {
|
|
q = q.Where("category not in (?)", qryFltr.NotCategories)
|
|
}
|
|
if len(qryFltr.Accounts) != 0 {
|
|
q = q.Where("account in (?)", qryFltr.Accounts)
|
|
}
|
|
if len(qryFltr.NotAccounts) != 0 {
|
|
q = q.Where("account not in (?)", qryFltr.NotAccounts)
|
|
}
|
|
if len(qryFltr.Subjects) != 0 {
|
|
q = q.Where("subject in (?)", qryFltr.Subjects)
|
|
}
|
|
if len(qryFltr.NotSubjects) != 0 {
|
|
q = q.Where("subject not in (?)", qryFltr.NotSubjects)
|
|
}
|
|
if len(qryFltr.DestinationPrefixes) != 0 { // A bit ugly but still more readable than scopes provided by gorm
|
|
qIds := bytes.NewBufferString("(")
|
|
for idx, destPrefix := range qryFltr.DestinationPrefixes {
|
|
if idx != 0 {
|
|
qIds.WriteString(" OR")
|
|
}
|
|
qIds.WriteString(fmt.Sprintf(" destination LIKE '%s%%'", destPrefix))
|
|
}
|
|
qIds.WriteString(" )")
|
|
q = q.Where(qIds.String())
|
|
}
|
|
if len(qryFltr.NotDestinationPrefixes) != 0 { // A bit ugly but still more readable than scopes provided by gorm
|
|
qIds := bytes.NewBufferString("(")
|
|
for idx, destPrefix := range qryFltr.NotDestinationPrefixes {
|
|
if idx != 0 {
|
|
qIds.WriteString(" AND")
|
|
}
|
|
qIds.WriteString(fmt.Sprintf(" destination not LIKE '%s%%'", destPrefix))
|
|
}
|
|
qIds.WriteString(" )")
|
|
q = q.Where(qIds.String())
|
|
}
|
|
if len(qryFltr.Costs) != 0 {
|
|
q = q.Where(utils.CDRsTBL+".cost in (?)", qryFltr.Costs)
|
|
}
|
|
if len(qryFltr.NotCosts) != 0 {
|
|
q = q.Where(utils.CDRsTBL+".cost not in (?)", qryFltr.NotCosts)
|
|
}
|
|
if len(qryFltr.ExtraFields) != 0 { // Extra fields searches, implemented as contains in extra field
|
|
qIds := bytes.NewBufferString("(")
|
|
needOr := false
|
|
for field, value := range qryFltr.ExtraFields {
|
|
if needOr {
|
|
qIds.WriteString(" OR")
|
|
}
|
|
if value == utils.MetaExists {
|
|
qIds.WriteString(sqls.SQLImpl.extraFieldsExistsQry(field))
|
|
} else {
|
|
qIds.WriteString(sqls.SQLImpl.extraFieldsValueQry(field, value))
|
|
}
|
|
needOr = true
|
|
}
|
|
qIds.WriteString(" )")
|
|
q = q.Where(qIds.String())
|
|
}
|
|
if len(qryFltr.NotExtraFields) != 0 { // Extra fields searches, implemented as contains in extra field
|
|
qIds := bytes.NewBufferString("(")
|
|
needAnd := false
|
|
for field, value := range qryFltr.NotExtraFields {
|
|
if needAnd {
|
|
qIds.WriteString(" AND")
|
|
}
|
|
if value == utils.MetaExists {
|
|
qIds.WriteString(sqls.SQLImpl.notExtraFieldsExistsQry(field))
|
|
} else {
|
|
qIds.WriteString(sqls.SQLImpl.notExtraFieldsValueQry(field, value))
|
|
}
|
|
needAnd = true
|
|
}
|
|
qIds.WriteString(" )")
|
|
q = q.Where(qIds.String())
|
|
}
|
|
if qryFltr.OrderIDStart != nil { // Keep backwards compatible by testing 0 value
|
|
q = q.Where(utils.CDRsTBL+".id >= ?", *qryFltr.OrderIDStart)
|
|
}
|
|
if qryFltr.OrderIDEnd != nil {
|
|
q = q.Where(utils.CDRsTBL+".id < ?", *qryFltr.OrderIDEnd)
|
|
}
|
|
if qryFltr.SetupTimeStart != nil {
|
|
q = q.Where("setup_time >= ?", qryFltr.SetupTimeStart)
|
|
}
|
|
if qryFltr.SetupTimeEnd != nil {
|
|
q = q.Where("setup_time < ?", qryFltr.SetupTimeEnd)
|
|
}
|
|
if qryFltr.CreatedAtStart != nil && !qryFltr.CreatedAtStart.IsZero() { // With IsZero we keep backwards compatible with APIerSv1
|
|
q = q.Where("created_at >= ?", qryFltr.CreatedAtStart)
|
|
}
|
|
if qryFltr.CreatedAtEnd != nil && !qryFltr.CreatedAtEnd.IsZero() {
|
|
q = q.Where("created_at < ?", qryFltr.CreatedAtEnd)
|
|
}
|
|
if qryFltr.UpdatedAtStart != nil && !qryFltr.UpdatedAtStart.IsZero() { // With IsZero we keep backwards compatible with APIerSv1
|
|
q = q.Where("updated_at >= ?", qryFltr.UpdatedAtStart)
|
|
}
|
|
if qryFltr.UpdatedAtEnd != nil && !qryFltr.UpdatedAtEnd.IsZero() {
|
|
q = q.Where("updated_at < ?", qryFltr.UpdatedAtEnd)
|
|
}
|
|
if qryFltr.OrderBy != "" {
|
|
var orderVal string
|
|
separateVals := strings.Split(qryFltr.OrderBy, utils.InfieldSep)
|
|
switch separateVals[0] {
|
|
case utils.OrderID:
|
|
orderVal = "id"
|
|
case utils.AnswerTime:
|
|
orderVal = "answer_time"
|
|
case utils.SetupTime:
|
|
orderVal = "setup_time"
|
|
case utils.Usage:
|
|
if sqls.db.Dialector.Name() == utils.MySQL {
|
|
orderVal = "`usage`"
|
|
} else {
|
|
orderVal = "usage"
|
|
}
|
|
case utils.Cost:
|
|
orderVal = "cost"
|
|
default:
|
|
return nil, 0, fmt.Errorf("Invalid value : %s", separateVals[0])
|
|
}
|
|
if len(separateVals) == 2 && separateVals[1] == "desc" {
|
|
orderVal += " DESC"
|
|
}
|
|
q = q.Order(orderVal)
|
|
}
|
|
if len(qryFltr.MinUsage) != 0 {
|
|
minUsage, err := utils.ParseDurationWithNanosecs(qryFltr.MinUsage)
|
|
if err != nil {
|
|
return nil, 0, err
|
|
}
|
|
if sqls.db.Dialector.Name() == utils.MySQL { // MySQL needs escaping for usage
|
|
q = q.Where("`usage` >= ?", minUsage.Nanoseconds())
|
|
} else {
|
|
q = q.Where("usage >= ?", minUsage.Nanoseconds())
|
|
}
|
|
}
|
|
if len(qryFltr.MaxUsage) != 0 {
|
|
maxUsage, err := utils.ParseDurationWithNanosecs(qryFltr.MaxUsage)
|
|
if err != nil {
|
|
return nil, 0, err
|
|
}
|
|
if sqls.db.Dialector.Name() == utils.MySQL { // MySQL needs escaping for usage
|
|
q = q.Where("`usage` < ?", maxUsage.Nanoseconds())
|
|
} else {
|
|
q = q.Where("usage < ?", maxUsage.Nanoseconds())
|
|
}
|
|
|
|
}
|
|
if qryFltr.MinCost != nil {
|
|
if qryFltr.MaxCost == nil {
|
|
q = q.Where("cost >= ?", *qryFltr.MinCost)
|
|
} else if *qryFltr.MinCost == 0.0 && *qryFltr.MaxCost == -1.0 { // Special case when we want to skip errors
|
|
q = q.Where("( cost IS NULL OR cost >= 0.0 )")
|
|
} else {
|
|
q = q.Where("cost >= ?", *qryFltr.MinCost)
|
|
q = q.Where("cost < ?", *qryFltr.MaxCost)
|
|
}
|
|
} else if qryFltr.MaxCost != nil {
|
|
if *qryFltr.MaxCost == -1.0 { // Non-rated CDRs
|
|
q = q.Where("cost IS NULL") // Need to include it otherwise all CDRs will be returned
|
|
} else { // Above limited CDRs, since MinCost is empty, make sure we query also NULL cost
|
|
q = q.Where(fmt.Sprintf("( cost IS NULL OR cost < %f )", *qryFltr.MaxCost))
|
|
}
|
|
}
|
|
if qryFltr.Paginator.Limit != nil {
|
|
q = q.Limit(*qryFltr.Paginator.Limit)
|
|
}
|
|
if qryFltr.Paginator.Offset != nil {
|
|
q = q.Offset(*qryFltr.Paginator.Offset)
|
|
}
|
|
if remove { // Remove CDRs instead of querying them
|
|
if err := q.Delete(nil).Error; err != nil {
|
|
q.Rollback()
|
|
return nil, 0, err
|
|
}
|
|
}
|
|
if qryFltr.Count { // Count CDRs
|
|
var cnt int64
|
|
if err := q.Count(&cnt).Error; err != nil {
|
|
//if err := q.Debug().Count(&cnt).Error; err != nil {
|
|
return nil, 0, err
|
|
}
|
|
return nil, cnt, nil
|
|
}
|
|
// Execute query
|
|
results := make([]*CDRsql, 0)
|
|
if err := q.Find(&results).Error; err != nil {
|
|
return nil, 0, err
|
|
}
|
|
for _, result := range results {
|
|
if cdr, err := NewCDRFromSQL(result); err != nil {
|
|
return nil, 0, err
|
|
} else {
|
|
cdrs = append(cdrs, cdr)
|
|
}
|
|
}
|
|
if len(cdrs) == 0 && !remove {
|
|
return cdrs, 0, utils.ErrNotFound
|
|
}
|
|
return cdrs, 0, nil
|
|
}
|
|
|
|
func (sqls *SQLStorage) GetTPDestinations(tpid, id string) (uTPDsts []*utils.TPDestination, err error) {
|
|
var tpDests DestinationMdls
|
|
q := sqls.db.Where("tpid = ?", tpid)
|
|
if len(id) != 0 {
|
|
q = q.Where("tag = ?", id)
|
|
}
|
|
if err := q.Find(&tpDests).Error; err != nil {
|
|
return nil, err
|
|
}
|
|
if len(tpDests.AsTPDestinations()) == 0 {
|
|
return tpDests.AsTPDestinations(), utils.ErrNotFound
|
|
}
|
|
return tpDests.AsTPDestinations(), nil
|
|
}
|
|
|
|
func (sqls *SQLStorage) GetTPTimings(tpid, id string) ([]*utils.ApierTPTiming, error) {
|
|
var tpTimings TimingMdls
|
|
q := sqls.db.Where("tpid = ?", tpid)
|
|
if len(id) != 0 {
|
|
q = q.Where("tag = ?", id)
|
|
}
|
|
if err := q.Find(&tpTimings).Error; err != nil {
|
|
return nil, err
|
|
}
|
|
ts := tpTimings.AsTPTimings()
|
|
if len(ts) == 0 {
|
|
return ts, utils.ErrNotFound
|
|
}
|
|
return ts, nil
|
|
}
|
|
|
|
func (sqls *SQLStorage) GetTPResources(tpid, tenant, id string) ([]*utils.TPResourceProfile, error) {
|
|
var rls ResourceMdls
|
|
q := sqls.db.Where("tpid = ?", tpid)
|
|
if len(id) != 0 {
|
|
q = q.Where("id = ?", id)
|
|
}
|
|
if len(tenant) != 0 {
|
|
q = q.Where("tenant = ?", tenant)
|
|
}
|
|
if err := q.Find(&rls).Error; err != nil {
|
|
return nil, err
|
|
}
|
|
arls := rls.AsTPResources()
|
|
if len(arls) == 0 {
|
|
return arls, utils.ErrNotFound
|
|
}
|
|
return arls, nil
|
|
}
|
|
|
|
func (sqls *SQLStorage) GetTPStats(tpid, tenant, id string) ([]*utils.TPStatProfile, error) {
|
|
var sts StatMdls
|
|
q := sqls.db.Where("tpid = ?", tpid)
|
|
if len(id) != 0 {
|
|
q = q.Where("id = ?", id)
|
|
}
|
|
if len(tenant) != 0 {
|
|
q = q.Where("tenant = ?", tenant)
|
|
}
|
|
if err := q.Find(&sts).Error; err != nil {
|
|
return nil, err
|
|
}
|
|
asts := sts.AsTPStats()
|
|
if len(asts) == 0 {
|
|
return asts, utils.ErrNotFound
|
|
}
|
|
return asts, nil
|
|
}
|
|
|
|
func (sqls *SQLStorage) GetTPThresholds(tpid, tenant, id string) ([]*utils.TPThresholdProfile, error) {
|
|
var ths ThresholdMdls
|
|
q := sqls.db.Where("tpid = ?", tpid)
|
|
if len(id) != 0 {
|
|
q = q.Where("id = ?", id)
|
|
}
|
|
if len(tenant) != 0 {
|
|
q = q.Where("tenant = ?", tenant)
|
|
}
|
|
if err := q.Find(&ths).Error; err != nil {
|
|
return nil, err
|
|
}
|
|
aths := ths.AsTPThreshold()
|
|
if len(aths) == 0 {
|
|
return aths, utils.ErrNotFound
|
|
}
|
|
return aths, nil
|
|
}
|
|
|
|
func (sqls *SQLStorage) GetTPFilters(tpid, tenant, id string) ([]*utils.TPFilterProfile, error) {
|
|
var ths FilterMdls
|
|
q := sqls.db.Where("tpid = ?", tpid)
|
|
if len(id) != 0 {
|
|
q = q.Where("id = ?", id)
|
|
}
|
|
if len(tenant) != 0 {
|
|
q = q.Where("tenant = ?", tenant)
|
|
}
|
|
if err := q.Find(&ths).Error; err != nil {
|
|
return nil, err
|
|
}
|
|
aths := ths.AsTPFilter()
|
|
if len(aths) == 0 {
|
|
return aths, utils.ErrNotFound
|
|
}
|
|
return aths, nil
|
|
}
|
|
|
|
func (sqls *SQLStorage) GetTPRoutes(tpid, tenant, id string) ([]*utils.TPRouteProfile, error) {
|
|
var tpRoutes RouteMdls
|
|
q := sqls.db.Where("tpid = ?", tpid)
|
|
if len(id) != 0 {
|
|
q = q.Where("id = ?", id)
|
|
}
|
|
if len(tenant) != 0 {
|
|
q = q.Where("tenant = ?", tenant)
|
|
}
|
|
if err := q.Find(&tpRoutes).Error; err != nil {
|
|
return nil, err
|
|
}
|
|
aTpRoutes := tpRoutes.AsTPRouteProfile()
|
|
if len(aTpRoutes) == 0 {
|
|
return aTpRoutes, utils.ErrNotFound
|
|
}
|
|
return aTpRoutes, nil
|
|
}
|
|
|
|
func (sqls *SQLStorage) GetTPAttributes(tpid, tenant, id string) ([]*utils.TPAttributeProfile, error) {
|
|
var sps AttributeMdls
|
|
q := sqls.db.Where("tpid = ?", tpid)
|
|
if len(id) != 0 {
|
|
q = q.Where("id = ?", id)
|
|
}
|
|
if len(tenant) != 0 {
|
|
q = q.Where("tenant = ?", tenant)
|
|
}
|
|
if err := q.Find(&sps).Error; err != nil {
|
|
return nil, err
|
|
}
|
|
arls := sps.AsTPAttributes()
|
|
if len(arls) == 0 {
|
|
return arls, utils.ErrNotFound
|
|
}
|
|
return arls, nil
|
|
}
|
|
|
|
func (sqls *SQLStorage) GetTPChargers(tpid, tenant, id string) ([]*utils.TPChargerProfile, error) {
|
|
var cpps ChargerMdls
|
|
q := sqls.db.Where("tpid = ?", tpid)
|
|
if len(id) != 0 {
|
|
q = q.Where("id = ?", id)
|
|
}
|
|
if len(tenant) != 0 {
|
|
q = q.Where("tenant = ?", tenant)
|
|
}
|
|
if err := q.Find(&cpps).Error; err != nil {
|
|
return nil, err
|
|
}
|
|
arls := cpps.AsTPChargers()
|
|
if len(arls) == 0 {
|
|
return arls, utils.ErrNotFound
|
|
}
|
|
return arls, nil
|
|
}
|
|
|
|
func (sqls *SQLStorage) GetTPDispatcherProfiles(tpid, tenant, id string) ([]*utils.TPDispatcherProfile, error) {
|
|
var dpps DispatcherProfileMdls
|
|
q := sqls.db.Where("tpid = ?", tpid)
|
|
if len(id) != 0 {
|
|
q = q.Where("id = ?", id)
|
|
}
|
|
if len(tenant) != 0 {
|
|
q = q.Where("tenant = ?", tenant)
|
|
}
|
|
if err := q.Find(&dpps).Error; err != nil {
|
|
return nil, err
|
|
}
|
|
arls := dpps.AsTPDispatcherProfiles()
|
|
if len(arls) == 0 {
|
|
return arls, utils.ErrNotFound
|
|
}
|
|
return arls, nil
|
|
}
|
|
|
|
func (sqls *SQLStorage) GetTPDispatcherHosts(tpid, tenant, id string) ([]*utils.TPDispatcherHost, error) {
|
|
var dpps DispatcherHostMdls
|
|
q := sqls.db.Where("tpid = ?", tpid)
|
|
if len(id) != 0 {
|
|
q = q.Where("id = ?", id)
|
|
}
|
|
if len(tenant) != 0 {
|
|
q = q.Where("tenant = ?", tenant)
|
|
}
|
|
if err := q.Find(&dpps).Error; err != nil {
|
|
return nil, err
|
|
}
|
|
arls := dpps.AsTPDispatcherHosts()
|
|
if len(arls) == 0 {
|
|
return arls, utils.ErrNotFound
|
|
}
|
|
return arls, nil
|
|
}
|
|
|
|
func (sqls *SQLStorage) GetTPRateProfiles(tpid, tenant, id string) ([]*utils.TPRateProfile, error) {
|
|
var dpps RateProfileMdls
|
|
q := sqls.db.Where("tpid = ?", tpid)
|
|
if len(id) != 0 {
|
|
q = q.Where("id = ?", id)
|
|
}
|
|
if len(tenant) != 0 {
|
|
q = q.Where("tenant = ?", tenant)
|
|
}
|
|
if err := q.Find(&dpps).Error; err != nil {
|
|
return nil, err
|
|
}
|
|
arls := dpps.AsTPRateProfile()
|
|
if len(arls) == 0 {
|
|
return arls, utils.ErrNotFound
|
|
}
|
|
return arls, nil
|
|
}
|
|
|
|
func (sqls *SQLStorage) GetTPActionProfiles(tpid, tenant, id string) ([]*utils.TPActionProfile, error) {
|
|
var dpps ActionProfileMdls
|
|
q := sqls.db.Where("tpid = ?", tpid)
|
|
|
|
if len(id) != 0 {
|
|
q = q.Where("id = ?", id)
|
|
}
|
|
if len(tenant) != 0 {
|
|
q = q.Where("tenant = ?", tenant)
|
|
}
|
|
if err := q.Find(&dpps).Error; err != nil {
|
|
return nil, err
|
|
}
|
|
arls := dpps.AsTPActionProfile()
|
|
if len(arls) == 0 {
|
|
return arls, utils.ErrNotFound
|
|
}
|
|
return arls, nil
|
|
}
|
|
|
|
func (sqls *SQLStorage) GetTPAccountProfiles(tpid, tenant, id string) ([]*utils.TPAccountProfile, error) {
|
|
var dpps AccountProfileMdls
|
|
q := sqls.db.Where("tpid = ?", tpid)
|
|
if len(id) != 0 {
|
|
q = q.Where("id = ?", id)
|
|
}
|
|
if len(tenant) != 0 {
|
|
q = q.Where("tenant = ?", tenant)
|
|
}
|
|
if err := q.Find(&dpps).Error; err != nil {
|
|
return nil, err
|
|
}
|
|
arls, err := dpps.AsTPAccountProfile()
|
|
if err != nil {
|
|
return nil, err
|
|
} else if len(arls) == 0 {
|
|
return arls, utils.ErrNotFound
|
|
}
|
|
return arls, nil
|
|
}
|
|
|
|
// GetVersions returns slice of all versions or a specific version if tag is specified
|
|
func (sqls *SQLStorage) GetVersions(itm string) (vrs Versions, err error) {
|
|
q := sqls.db.Model(&TBLVersion{})
|
|
if itm != utils.TBLVersions && itm != "" {
|
|
q = sqls.db.Where(&TBLVersion{Item: itm})
|
|
}
|
|
var verModels []*TBLVersion
|
|
if err = q.Find(&verModels).Error; err != nil {
|
|
return
|
|
}
|
|
vrs = make(Versions)
|
|
for _, verModel := range verModels {
|
|
vrs[verModel.Item] = verModel.Version
|
|
}
|
|
if len(vrs) == 0 {
|
|
return nil, utils.ErrNotFound
|
|
}
|
|
return
|
|
}
|
|
|
|
// RemoveVersions will remove specific versions out of storage
|
|
func (sqls *SQLStorage) RemoveVersions(vrs Versions) (err error) {
|
|
if len(vrs) == 0 { // Remove all if no key provided
|
|
err = sqls.db.Delete(TBLVersion{}).Error
|
|
return
|
|
}
|
|
tx := sqls.db.Begin()
|
|
for key := range vrs {
|
|
if err = tx.Where(&TBLVersion{Item: key}).Delete(TBLVersion{}).Error; err != nil {
|
|
tx.Rollback()
|
|
return
|
|
}
|
|
}
|
|
tx.Commit()
|
|
return
|
|
}
|