mirror of
https://github.com/cgrates/cgrates.git
synced 2026-02-11 10:06:24 +05:00
163 lines
6.0 KiB
Go
163 lines
6.0 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 Affero 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 Affero General Public License for more details.
|
|
|
|
You should have received a copy of the GNU Affero General Public License
|
|
along with this program. If not, see <https://www.gnu.org/licenses/>
|
|
*/
|
|
|
|
package v1
|
|
|
|
// This file deals with tp_rate_profiles management over APIs
|
|
|
|
import (
|
|
"github.com/cgrates/birpc/context"
|
|
"github.com/cgrates/cgrates/utils"
|
|
)
|
|
|
|
// SetTPRatingProfile creates a new RatingProfile within a tariff plan
|
|
func (apierSv1 *APIerSv1) SetTPRatingProfile(ctx *context.Context, attrs *utils.TPRatingProfile, reply *string) error {
|
|
if missing := utils.MissingStructFields(attrs,
|
|
[]string{utils.TPid, utils.LoadId, utils.Category, utils.Subject, utils.RatingPlanActivations}); len(missing) != 0 {
|
|
return utils.NewErrMandatoryIeMissing(missing...)
|
|
}
|
|
if attrs.Tenant == utils.EmptyString {
|
|
attrs.Tenant = apierSv1.Config.GeneralCfg().DefaultTenant
|
|
}
|
|
if err := apierSv1.StorDb.SetTPRatingProfiles([]*utils.TPRatingProfile{attrs}); err != nil {
|
|
return utils.NewErrServerError(err)
|
|
}
|
|
*reply = utils.OK
|
|
return nil
|
|
}
|
|
|
|
// GetTPRatingProfilesByLoadID queries specific RatingProfile on tariff plan
|
|
func (apierSv1 *APIerSv1) GetTPRatingProfilesByLoadID(ctx *context.Context, attrs *utils.TPRatingProfile, reply *[]*utils.TPRatingProfile) error {
|
|
mndtryFlds := []string{utils.TPid, utils.LoadId}
|
|
if len(attrs.Subject) != 0 { // If Subject provided as filter, make all related fields mandatory
|
|
mndtryFlds = append(mndtryFlds, utils.Category, utils.Subject)
|
|
}
|
|
if missing := utils.MissingStructFields(attrs, mndtryFlds); len(missing) != 0 { //Params missing
|
|
return utils.NewErrMandatoryIeMissing(missing...)
|
|
}
|
|
if attrs.Tenant == utils.EmptyString {
|
|
attrs.Tenant = apierSv1.Config.GeneralCfg().DefaultTenant
|
|
}
|
|
rps, err := apierSv1.StorDb.GetTPRatingProfiles(attrs)
|
|
if err != nil {
|
|
if err.Error() != utils.ErrNotFound.Error() {
|
|
err = utils.NewErrServerError(err)
|
|
}
|
|
return err
|
|
}
|
|
*reply = rps
|
|
return nil
|
|
}
|
|
|
|
// GetTPRatingProfileLoadIds queries RatingProfile identities on specific tariff plan.
|
|
func (apierSv1 *APIerSv1) GetTPRatingProfileLoadIds(ctx *context.Context, attrs *utils.AttrTPRatingProfileIds, reply *[]string) error {
|
|
if missing := utils.MissingStructFields(attrs, []string{utils.TPid}); len(missing) != 0 { //Params missing
|
|
return utils.NewErrMandatoryIeMissing(missing...)
|
|
}
|
|
if attrs.Tenant == utils.EmptyString {
|
|
attrs.Tenant = apierSv1.Config.GeneralCfg().DefaultTenant
|
|
}
|
|
ids, err := apierSv1.StorDb.GetTpTableIds(attrs.TPid, utils.TBLTPRatingProfiles,
|
|
utils.TPDistinctIds{utils.Loadid}, map[string]string{
|
|
utils.TenantCfg: attrs.Tenant,
|
|
utils.CategoryLowerCase: attrs.Category,
|
|
utils.SubjectLowerCase: attrs.Subject,
|
|
}, new(utils.PaginatorWithSearch))
|
|
if err != nil {
|
|
if err.Error() != utils.ErrNotFound.Error() {
|
|
err = utils.NewErrServerError(err)
|
|
}
|
|
return err
|
|
}
|
|
*reply = ids
|
|
return nil
|
|
}
|
|
|
|
// AttrGetTPRatingProfile arguments used by GetTPRatingProfile and RemoveTPRatingProfile
|
|
type AttrGetTPRatingProfile struct {
|
|
TPid string // Tariff plan id
|
|
RatingProfileID string // RatingProfile id
|
|
}
|
|
|
|
// GetTPRatingProfile queries specific RatingProfile on tariff plan
|
|
func (apierSv1 *APIerSv1) GetTPRatingProfile(ctx *context.Context, attrs *AttrGetTPRatingProfile, reply *utils.TPRatingProfile) error {
|
|
if missing := utils.MissingStructFields(attrs, []string{utils.TPid, utils.RatingProfileID}); len(missing) != 0 { //Params missing
|
|
return utils.NewErrMandatoryIeMissing(missing...)
|
|
}
|
|
tmpRpf := &utils.TPRatingProfile{TPid: attrs.TPid}
|
|
if err := tmpRpf.SetRatingProfileID(attrs.RatingProfileID); err != nil {
|
|
return err
|
|
}
|
|
rpfs, err := apierSv1.StorDb.GetTPRatingProfiles(tmpRpf)
|
|
if err != nil {
|
|
if err.Error() != utils.ErrNotFound.Error() {
|
|
err = utils.NewErrServerError(err)
|
|
}
|
|
return err
|
|
}
|
|
*reply = *rpfs[0]
|
|
return nil
|
|
}
|
|
|
|
// AttrGetTPRatingProfileIds arguments used by GetTPRatingProfileIds
|
|
type AttrGetTPRatingProfileIds struct {
|
|
TPid string // Tariff plan id
|
|
utils.PaginatorWithSearch
|
|
}
|
|
|
|
// GetTPRatingProfileIds queries RatingProfiles identities on specific tariff plan.
|
|
func (apierSv1 *APIerSv1) GetTPRatingProfileIds(ctx *context.Context, attrs *AttrGetTPRatingProfileIds, reply *[]string) error {
|
|
if missing := utils.MissingStructFields(attrs, []string{utils.TPid}); len(missing) != 0 { //Params missing
|
|
return utils.NewErrMandatoryIeMissing(missing...)
|
|
}
|
|
ids, err := apierSv1.StorDb.GetTpTableIds(attrs.TPid, utils.TBLTPRatingProfiles,
|
|
utils.TPDistinctIds{utils.Loadid, utils.TenantCfg, utils.CategoryLowerCase, utils.SubjectLowerCase},
|
|
nil, &attrs.PaginatorWithSearch)
|
|
if err != nil {
|
|
if err.Error() != utils.ErrNotFound.Error() {
|
|
err = utils.NewErrServerError(err)
|
|
}
|
|
return err
|
|
}
|
|
*reply = ids
|
|
return nil
|
|
}
|
|
|
|
// RemoveTPRatingProfile removes specific RatingProfiles on Tariff plan
|
|
func (apierSv1 *APIerSv1) RemoveTPRatingProfile(ctx *context.Context, attrs *AttrGetTPRatingProfile, reply *string) (err error) {
|
|
if missing := utils.MissingStructFields(attrs, []string{utils.TPid, utils.RatingProfileID}); len(missing) != 0 { //Params missing
|
|
return utils.NewErrMandatoryIeMissing(missing...)
|
|
}
|
|
tmpRpf := new(utils.TPRatingProfile)
|
|
if err = tmpRpf.SetRatingProfileID(attrs.RatingProfileID); err != nil {
|
|
return
|
|
}
|
|
err = apierSv1.StorDb.RemTpData(utils.TBLTPRatingProfiles,
|
|
attrs.TPid, map[string]string{
|
|
utils.Loadid: tmpRpf.LoadId,
|
|
utils.TenantCfg: tmpRpf.Tenant,
|
|
utils.CategoryLowerCase: tmpRpf.Category,
|
|
utils.SubjectLowerCase: tmpRpf.Subject,
|
|
})
|
|
if err != nil {
|
|
return utils.NewErrServerError(err)
|
|
}
|
|
*reply = utils.OK
|
|
return
|
|
}
|