| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131 |
- // Copyright 2019 Yunion
- //
- // Licensed under the Apache License, Version 2.0 (the "License");
- // you may not use this file except in compliance with the License.
- // You may obtain a copy of the License at
- //
- // http://www.apache.org/licenses/LICENSE-2.0
- //
- // Unless required by applicable law or agreed to in writing, software
- // distributed under the License is distributed on an "AS IS" BASIS,
- // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- // See the License for the specific language governing permissions and
- // limitations under the License.
- package sender
- import (
- "context"
- "yunion.io/x/cloudmux/pkg/cloudprovider"
- "yunion.io/x/pkg/errors"
- api "yunion.io/x/onecloud/pkg/apis/notify"
- "yunion.io/x/onecloud/pkg/cloudcommon/db"
- "yunion.io/x/onecloud/pkg/notify/models"
- )
- type SMobileSender struct {
- config map[string]api.SNotifyConfigContent
- }
- func (smsSender *SMobileSender) GetSenderType() string {
- return api.MOBILE
- }
- func (smsSender *SMobileSender) Send(ctx context.Context, args api.SendParams) error {
- smsSendParams := api.SSMSSendParams{
- TemplateParas: args.Message,
- To: args.Receivers.Contact,
- RemoteTemplate: args.RemoteTemplate,
- RemoteTemplateParam: args.RemoteTemplateParam,
- }
- config, ok := models.ConfigMap[api.MOBILE]
- if !ok {
- return errors.Wrapf(errors.ErrNotFound, "no set %s config", api.MOBILE)
- }
- if config.Content == nil {
- return errors.Wrapf(errors.ErrNotFound, "no %s content found", api.MOBILE)
- }
- smsdriver := models.GetSMSDriver(config.Content.SmsDriver)
- return smsdriver.Send(smsSendParams, false, &api.NotifyConfig{
- SNotifyConfigContent: *config.Content,
- Attribution: config.Attribution,
- DomainId: config.DomainId,
- })
- }
- func (smsSender *SMobileSender) ValidateConfig(ctx context.Context, config api.NotifyConfig) (string, error) {
- driver := models.GetSMSDriver(config.SmsDriver)
- if driver == nil {
- return "", errors.Wrap(errors.ErrNotFound, "driver disabled")
- }
- return "", driver.Verify(&config)
- }
- func (smsSender *SMobileSender) UpdateConfig(config api.NotifyConfig) error {
- q := models.ConfigManager.Query()
- q = q.Equals("type", api.MOBILE)
- confs := []models.SConfig{}
- db.FetchModelObjects(models.ConfigManager, q, &confs)
- if len(confs) == 0 {
- return errors.Wrapf(errors.ErrNotFound, "config type:%s", api.MOBILE)
- }
- _, err := db.Update(&confs[0], func() error {
- confs[0].Content = &config.SNotifyConfigContent
- return nil
- })
- if err != nil {
- return errors.Wrap(err, "update config")
- }
- models.ConfigMap[api.MOBILE] = models.SConfig{
- Content: &config.SNotifyConfigContent,
- }
- return nil
- }
- func (smsSender *SMobileSender) AddConfig(config api.NotifyConfig) error {
- return cloudprovider.ErrNotImplemented
- }
- func (smsSender *SMobileSender) DeleteConfig(config api.NotifyConfig) error {
- return cloudprovider.ErrNotImplemented
- }
- func (smsSender *SMobileSender) ContactByMobile(ctx context.Context, mobile, domainId string) (string, error) {
- return "", nil
- }
- func (smsSender *SMobileSender) IsPersonal() bool {
- return true
- }
- func (smsSender *SMobileSender) IsRobot() bool {
- return false
- }
- func (smsSender *SMobileSender) IsValid() bool {
- return len(smsSender.config) > 0
- }
- func (smsSender *SMobileSender) IsPullType() bool {
- return false
- }
- func (smsSender *SMobileSender) IsSystemConfigContactType() bool {
- return true
- }
- func (smsSender *SMobileSender) GetAccessToken(ctx context.Context, key string) error {
- return nil
- }
- func (smsSender *SMobileSender) RegisterConfig(config models.SConfig) {
- models.ConfigMap[config.Type] = config
- }
- func init() {
- models.Register(&SMobileSender{
- config: map[string]api.SNotifyConfigContent{},
- })
- }
|