mirror of
https://github.com/cgrates/cgrates.git
synced 2026-02-12 18:46:24 +05:00
471 lines
13 KiB
Go
471 lines
13 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 migrator
|
|
|
|
import (
|
|
"github.com/cgrates/cgrates/engine"
|
|
"github.com/cgrates/cgrates/utils"
|
|
"go.mongodb.org/mongo-driver/bson"
|
|
"go.mongodb.org/mongo-driver/mongo"
|
|
)
|
|
|
|
const (
|
|
v2AccountsCol = "accounts"
|
|
v1ActionTriggersCol = "action_triggers"
|
|
v1AttributeProfilesCol = "attribute_profiles"
|
|
v2ThresholdProfileCol = "threshold_profiles"
|
|
v1AliasCol = "aliases"
|
|
v1UserCol = "users"
|
|
v1DerivedChargersCol = "derived_chargers"
|
|
v2StatsCol = "statqueues"
|
|
)
|
|
|
|
type mongoMigrator struct {
|
|
dm *engine.DataManager
|
|
mgoDB *engine.MongoStorage
|
|
cursor *mongo.Cursor
|
|
}
|
|
|
|
func newMongoMigrator(dm *engine.DataManager) (mgoMig *mongoMigrator) {
|
|
return &mongoMigrator{
|
|
dm: dm,
|
|
mgoDB: dm.DataDB().(*engine.MongoStorage),
|
|
cursor: nil,
|
|
}
|
|
}
|
|
|
|
func (v1ms *mongoMigrator) close() {
|
|
v1ms.mgoDB.Close()
|
|
}
|
|
|
|
func (v1ms *mongoMigrator) DataManager() *engine.DataManager {
|
|
return v1ms.dm
|
|
}
|
|
|
|
// Stats methods
|
|
// get
|
|
func (v1ms *mongoMigrator) getV1Stats() (v1st *v1Stat, err error) {
|
|
if v1ms.cursor == nil {
|
|
v1ms.cursor, err = v1ms.mgoDB.DB().Collection(utils.CDRsStatsPrefix).Find(v1ms.mgoDB.GetContext(), bson.D{})
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
}
|
|
if !(*v1ms.cursor).Next(v1ms.mgoDB.GetContext()) {
|
|
(*v1ms.cursor).Close(v1ms.mgoDB.GetContext())
|
|
v1ms.cursor = nil
|
|
return nil, utils.ErrNoMoreData
|
|
}
|
|
v1st = new(v1Stat)
|
|
if err := (*v1ms.cursor).Decode(v1st); err != nil {
|
|
return nil, err
|
|
}
|
|
return v1st, nil
|
|
}
|
|
|
|
func (v1ms *mongoMigrator) getV3Stats() (v1st *engine.StatQueueProfile, err error) {
|
|
if v1ms.cursor == nil {
|
|
v1ms.cursor, err = v1ms.mgoDB.DB().Collection(engine.ColSqp).Find(v1ms.mgoDB.GetContext(), bson.D{})
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
}
|
|
if !(*v1ms.cursor).Next(v1ms.mgoDB.GetContext()) {
|
|
(*v1ms.cursor).Close(v1ms.mgoDB.GetContext())
|
|
v1ms.cursor = nil
|
|
return nil, utils.ErrNoMoreData
|
|
}
|
|
v1st = new(engine.StatQueueProfile)
|
|
if err := (*v1ms.cursor).Decode(v1st); err != nil {
|
|
return nil, err
|
|
}
|
|
return v1st, nil
|
|
}
|
|
|
|
// set
|
|
func (v1ms *mongoMigrator) setV1Stats(x *v1Stat) (err error) {
|
|
_, err = v1ms.mgoDB.DB().Collection(utils.CDRsStatsPrefix).InsertOne(v1ms.mgoDB.GetContext(), x)
|
|
return
|
|
}
|
|
|
|
// get V2
|
|
func (v1ms *mongoMigrator) getV2Stats() (v2 *engine.StatQueue, err error) {
|
|
if v1ms.cursor == nil {
|
|
v1ms.cursor, err = v1ms.mgoDB.DB().Collection(v2StatsCol).Find(v1ms.mgoDB.GetContext(), bson.D{})
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
}
|
|
if !(*v1ms.cursor).Next(v1ms.mgoDB.GetContext()) {
|
|
(*v1ms.cursor).Close(v1ms.mgoDB.GetContext())
|
|
v1ms.cursor = nil
|
|
return nil, utils.ErrNoMoreData
|
|
}
|
|
v2 = new(engine.StatQueue)
|
|
if err := (*v1ms.cursor).Decode(v2); err != nil {
|
|
return nil, err
|
|
}
|
|
return v2, nil
|
|
}
|
|
|
|
// set v2
|
|
func (v1ms *mongoMigrator) setV2Stats(v2 *engine.StatQueue) (err error) {
|
|
_, err = v1ms.mgoDB.DB().Collection(v2StatsCol).InsertOne(v1ms.mgoDB.GetContext(), v2)
|
|
return
|
|
}
|
|
|
|
// AttributeProfile methods
|
|
// get
|
|
func (v1ms *mongoMigrator) getV1AttributeProfile() (v1attrPrf *v1AttributeProfile, err error) {
|
|
if v1ms.cursor == nil {
|
|
v1ms.cursor, err = v1ms.mgoDB.DB().Collection(v1AttributeProfilesCol).Find(v1ms.mgoDB.GetContext(), bson.D{})
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
}
|
|
if !(*v1ms.cursor).Next(v1ms.mgoDB.GetContext()) {
|
|
(*v1ms.cursor).Close(v1ms.mgoDB.GetContext())
|
|
v1ms.cursor = nil
|
|
return nil, utils.ErrNoMoreData
|
|
}
|
|
v1attrPrf = new(v1AttributeProfile)
|
|
if err := (*v1ms.cursor).Decode(v1attrPrf); err != nil {
|
|
return nil, err
|
|
}
|
|
return v1attrPrf, nil
|
|
}
|
|
|
|
// set
|
|
func (v1ms *mongoMigrator) setV1AttributeProfile(x *v1AttributeProfile) (err error) {
|
|
_, err = v1ms.mgoDB.DB().Collection(v1AttributeProfilesCol).InsertOne(v1ms.mgoDB.GetContext(), x)
|
|
return
|
|
}
|
|
|
|
// ThresholdProfile methods
|
|
// get
|
|
func (v1ms *mongoMigrator) getV2ThresholdProfile() (v2T *v2Threshold, err error) {
|
|
if v1ms.cursor == nil {
|
|
v1ms.cursor, err = v1ms.mgoDB.DB().Collection(v2ThresholdProfileCol).Find(v1ms.mgoDB.GetContext(), bson.D{})
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
}
|
|
if !(*v1ms.cursor).Next(v1ms.mgoDB.GetContext()) {
|
|
(*v1ms.cursor).Close(v1ms.mgoDB.GetContext())
|
|
v1ms.cursor = nil
|
|
return nil, utils.ErrNoMoreData
|
|
}
|
|
v2T = new(v2Threshold)
|
|
if err := (*v1ms.cursor).Decode(v2T); err != nil {
|
|
return nil, err
|
|
}
|
|
return v2T, nil
|
|
}
|
|
|
|
func (v1ms *mongoMigrator) getV3ThresholdProfile() (v2T *engine.ThresholdProfile, err error) {
|
|
if v1ms.cursor == nil {
|
|
v1ms.cursor, err = v1ms.mgoDB.DB().Collection(engine.ColTps).Find(v1ms.mgoDB.GetContext(), bson.D{})
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
}
|
|
if !(*v1ms.cursor).Next(v1ms.mgoDB.GetContext()) {
|
|
(*v1ms.cursor).Close(v1ms.mgoDB.GetContext())
|
|
v1ms.cursor = nil
|
|
return nil, utils.ErrNoMoreData
|
|
}
|
|
v2T = new(engine.ThresholdProfile)
|
|
if err := (*v1ms.cursor).Decode(v2T); err != nil {
|
|
return nil, err
|
|
}
|
|
return v2T, nil
|
|
}
|
|
|
|
// set
|
|
func (v1ms *mongoMigrator) setV2ThresholdProfile(x *v2Threshold) (err error) {
|
|
_, err = v1ms.mgoDB.DB().Collection(v2ThresholdProfileCol).InsertOne(v1ms.mgoDB.GetContext(), x)
|
|
return
|
|
}
|
|
|
|
// rem
|
|
func (v1ms *mongoMigrator) remV2ThresholdProfile(tenant, id string) (err error) {
|
|
_, err = v1ms.mgoDB.DB().Collection(v2ThresholdProfileCol).DeleteOne(v1ms.mgoDB.GetContext(), bson.M{"tenant": tenant, "id": id})
|
|
return
|
|
}
|
|
|
|
// AttributeProfile methods
|
|
// get
|
|
func (v1ms *mongoMigrator) getV2AttributeProfile() (v2attrPrf *v2AttributeProfile, err error) {
|
|
if v1ms.cursor == nil {
|
|
v1ms.cursor, err = v1ms.mgoDB.DB().Collection(v1AttributeProfilesCol).Find(v1ms.mgoDB.GetContext(), bson.D{})
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
}
|
|
if !(*v1ms.cursor).Next(v1ms.mgoDB.GetContext()) {
|
|
(*v1ms.cursor).Close(v1ms.mgoDB.GetContext())
|
|
v1ms.cursor = nil
|
|
return nil, utils.ErrNoMoreData
|
|
}
|
|
v2attrPrf = new(v2AttributeProfile)
|
|
if err := (*v1ms.cursor).Decode(v2attrPrf); err != nil {
|
|
return nil, err
|
|
}
|
|
return v2attrPrf, nil
|
|
}
|
|
|
|
// set
|
|
func (v1ms *mongoMigrator) setV2AttributeProfile(x *v2AttributeProfile) (err error) {
|
|
_, err = v1ms.mgoDB.DB().Collection(v1AttributeProfilesCol).InsertOne(v1ms.mgoDB.GetContext(), x)
|
|
return
|
|
}
|
|
|
|
// rem
|
|
func (v1ms *mongoMigrator) remV2AttributeProfile(tenant, id string) (err error) {
|
|
_, err = v1ms.mgoDB.DB().Collection(v1AttributeProfilesCol).DeleteOne(v1ms.mgoDB.GetContext(), bson.M{"tenant": tenant, "id": id})
|
|
return
|
|
}
|
|
|
|
// AttributeProfile methods
|
|
// get
|
|
func (v1ms *mongoMigrator) getV3AttributeProfile() (v3attrPrf *v3AttributeProfile, err error) {
|
|
if v1ms.cursor == nil {
|
|
v1ms.cursor, err = v1ms.mgoDB.DB().Collection(v1AttributeProfilesCol).Find(v1ms.mgoDB.GetContext(), bson.D{})
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
}
|
|
if !(*v1ms.cursor).Next(v1ms.mgoDB.GetContext()) {
|
|
(*v1ms.cursor).Close(v1ms.mgoDB.GetContext())
|
|
v1ms.cursor = nil
|
|
return nil, utils.ErrNoMoreData
|
|
}
|
|
v3attrPrf = new(v3AttributeProfile)
|
|
if err := (*v1ms.cursor).Decode(v3attrPrf); err != nil {
|
|
return nil, err
|
|
}
|
|
return v3attrPrf, nil
|
|
}
|
|
|
|
// set
|
|
func (v1ms *mongoMigrator) setV3AttributeProfile(x *v3AttributeProfile) (err error) {
|
|
_, err = v1ms.mgoDB.DB().Collection(v1AttributeProfilesCol).InsertOne(v1ms.mgoDB.GetContext(), x)
|
|
return
|
|
}
|
|
|
|
// rem
|
|
func (v1ms *mongoMigrator) remV3AttributeProfile(tenant, id string) (err error) {
|
|
_, err = v1ms.mgoDB.DB().Collection(v1AttributeProfilesCol).DeleteOne(v1ms.mgoDB.GetContext(), bson.M{"tenant": tenant, "id": id})
|
|
return
|
|
}
|
|
|
|
// AttributeProfile methods
|
|
// get
|
|
func (v1ms *mongoMigrator) getV4AttributeProfile() (v4attrPrf *v4AttributeProfile, err error) {
|
|
if v1ms.cursor == nil {
|
|
v1ms.cursor, err = v1ms.mgoDB.DB().Collection(v1AttributeProfilesCol).Find(v1ms.mgoDB.GetContext(), bson.D{})
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
}
|
|
if !(*v1ms.cursor).Next(v1ms.mgoDB.GetContext()) {
|
|
(*v1ms.cursor).Close(v1ms.mgoDB.GetContext())
|
|
v1ms.cursor = nil
|
|
return nil, utils.ErrNoMoreData
|
|
}
|
|
v4attrPrf = new(v4AttributeProfile)
|
|
if err := (*v1ms.cursor).Decode(v4attrPrf); err != nil {
|
|
return nil, err
|
|
}
|
|
return v4attrPrf, nil
|
|
}
|
|
|
|
func (v1ms *mongoMigrator) getV5AttributeProfile() (v5attrPrf *v6AttributeProfile, err error) {
|
|
if v1ms.cursor == nil {
|
|
v1ms.cursor, err = v1ms.mgoDB.DB().Collection(v1AttributeProfilesCol).Find(v1ms.mgoDB.GetContext(), bson.D{})
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
}
|
|
if !(*v1ms.cursor).Next(v1ms.mgoDB.GetContext()) {
|
|
(*v1ms.cursor).Close(v1ms.mgoDB.GetContext())
|
|
v1ms.cursor = nil
|
|
return nil, utils.ErrNoMoreData
|
|
}
|
|
v5attrPrf = new(v6AttributeProfile)
|
|
if err := (*v1ms.cursor).Decode(v5attrPrf); err != nil {
|
|
return nil, err
|
|
}
|
|
return v5attrPrf, nil
|
|
}
|
|
|
|
// set
|
|
func (v1ms *mongoMigrator) setV4AttributeProfile(x *v4AttributeProfile) (err error) {
|
|
_, err = v1ms.mgoDB.DB().Collection(v1AttributeProfilesCol).InsertOne(v1ms.mgoDB.GetContext(), x)
|
|
return
|
|
}
|
|
|
|
// rem
|
|
func (v1ms *mongoMigrator) remV4AttributeProfile(tenant, id string) (err error) {
|
|
_, err = v1ms.mgoDB.DB().Collection(v1AttributeProfilesCol).DeleteOne(v1ms.mgoDB.GetContext(), bson.M{"tenant": tenant, "id": id})
|
|
return
|
|
}
|
|
|
|
// Filter Methods
|
|
// get
|
|
func (v1ms *mongoMigrator) getV1Filter() (v1Fltr *v1Filter, err error) {
|
|
if v1ms.cursor == nil {
|
|
v1ms.cursor, err = v1ms.mgoDB.DB().Collection(engine.ColFlt).Find(v1ms.mgoDB.GetContext(), bson.D{})
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
}
|
|
if !(*v1ms.cursor).Next(v1ms.mgoDB.GetContext()) {
|
|
(*v1ms.cursor).Close(v1ms.mgoDB.GetContext())
|
|
v1ms.cursor = nil
|
|
return nil, utils.ErrNoMoreData
|
|
}
|
|
v1Fltr = new(v1Filter)
|
|
if err := (*v1ms.cursor).Decode(v1Fltr); err != nil {
|
|
return nil, err
|
|
}
|
|
return
|
|
}
|
|
|
|
func (v1ms *mongoMigrator) getV4Filter() (v4Fltr *engine.Filter, err error) {
|
|
if v1ms.cursor == nil {
|
|
v1ms.cursor, err = v1ms.mgoDB.DB().Collection(engine.ColFlt).Find(v1ms.mgoDB.GetContext(), bson.D{})
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
}
|
|
if !(*v1ms.cursor).Next(v1ms.mgoDB.GetContext()) {
|
|
(*v1ms.cursor).Close(v1ms.mgoDB.GetContext())
|
|
v1ms.cursor = nil
|
|
return nil, utils.ErrNoMoreData
|
|
}
|
|
v4Fltr = new(engine.Filter)
|
|
if err := (*v1ms.cursor).Decode(v4Fltr); err != nil {
|
|
return nil, err
|
|
}
|
|
return
|
|
}
|
|
|
|
// set
|
|
func (v1ms *mongoMigrator) setV1Filter(x *v1Filter) (err error) {
|
|
_, err = v1ms.mgoDB.DB().Collection(engine.ColFlt).InsertOne(v1ms.mgoDB.GetContext(), x)
|
|
return
|
|
}
|
|
|
|
// rem
|
|
func (v1ms *mongoMigrator) remV1Filter(tenant, id string) (err error) {
|
|
_, err = v1ms.mgoDB.DB().Collection(engine.ColFlt).DeleteOne(v1ms.mgoDB.GetContext(), bson.M{"tenant": tenant, "id": id})
|
|
return
|
|
}
|
|
|
|
// Supplier Methods
|
|
// get
|
|
func (v1ms *mongoMigrator) getSupplier() (spl *SupplierProfile, err error) {
|
|
if v1ms.cursor == nil {
|
|
v1ms.cursor, err = v1ms.mgoDB.DB().Collection(ColSpp).Find(v1ms.mgoDB.GetContext(), bson.D{})
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
}
|
|
if !(*v1ms.cursor).Next(v1ms.mgoDB.GetContext()) {
|
|
(*v1ms.cursor).Close(v1ms.mgoDB.GetContext())
|
|
v1ms.cursor = nil
|
|
return nil, utils.ErrNoMoreData
|
|
}
|
|
spl = new(SupplierProfile)
|
|
if err := (*v1ms.cursor).Decode(spl); err != nil {
|
|
return nil, err
|
|
}
|
|
return
|
|
}
|
|
|
|
// set
|
|
func (v1ms *mongoMigrator) setSupplier(spl *SupplierProfile) (err error) {
|
|
_, err = v1ms.mgoDB.DB().Collection(ColSpp).InsertOne(v1ms.mgoDB.GetContext(), spl)
|
|
return
|
|
}
|
|
|
|
// rem
|
|
func (v1ms *mongoMigrator) remSupplier(tenant, id string) (err error) {
|
|
_, err = v1ms.mgoDB.DB().Collection(ColSpp).DeleteOne(v1ms.mgoDB.GetContext(), bson.M{"tenant": tenant, "id": id})
|
|
return
|
|
}
|
|
|
|
func (v1ms *mongoMigrator) getV1ChargerProfile() (v1chrPrf *engine.ChargerProfile, err error) {
|
|
if v1ms.cursor == nil {
|
|
v1ms.cursor, err = v1ms.mgoDB.DB().Collection(engine.ColCpp).Find(v1ms.mgoDB.GetContext(), bson.D{})
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
}
|
|
if !(*v1ms.cursor).Next(v1ms.mgoDB.GetContext()) {
|
|
(*v1ms.cursor).Close(v1ms.mgoDB.GetContext())
|
|
v1ms.cursor = nil
|
|
return nil, utils.ErrNoMoreData
|
|
}
|
|
v1chrPrf = new(engine.ChargerProfile)
|
|
if err := (*v1ms.cursor).Decode(v1chrPrf); err != nil {
|
|
return nil, err
|
|
}
|
|
return
|
|
}
|
|
|
|
func (v1ms *mongoMigrator) getV1DispatcherProfile() (v1dppPrf *engine.DispatcherProfile, err error) {
|
|
if v1ms.cursor == nil {
|
|
v1ms.cursor, err = v1ms.mgoDB.DB().Collection(engine.ColDpp).Find(v1ms.mgoDB.GetContext(), bson.D{})
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
}
|
|
if !(*v1ms.cursor).Next(v1ms.mgoDB.GetContext()) {
|
|
(*v1ms.cursor).Close(v1ms.mgoDB.GetContext())
|
|
v1ms.cursor = nil
|
|
return nil, utils.ErrNoMoreData
|
|
}
|
|
v1dppPrf = new(engine.DispatcherProfile)
|
|
if err := (*v1ms.cursor).Decode(v1dppPrf); err != nil {
|
|
return nil, err
|
|
}
|
|
return
|
|
}
|
|
|
|
func (v1ms *mongoMigrator) getV1RouteProfile() (v1dppPrf *engine.RouteProfile, err error) {
|
|
if v1ms.cursor == nil {
|
|
v1ms.cursor, err = v1ms.mgoDB.DB().Collection(engine.ColRpp).Find(v1ms.mgoDB.GetContext(), bson.D{})
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
}
|
|
if !(*v1ms.cursor).Next(v1ms.mgoDB.GetContext()) {
|
|
(*v1ms.cursor).Close(v1ms.mgoDB.GetContext())
|
|
v1ms.cursor = nil
|
|
return nil, utils.ErrNoMoreData
|
|
}
|
|
v1dppPrf = new(engine.RouteProfile)
|
|
if err := (*v1ms.cursor).Decode(v1dppPrf); err != nil {
|
|
return nil, err
|
|
}
|
|
return
|
|
}
|