You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
79 lines
3.0 KiB
79 lines
3.0 KiB
# -*- coding: utf-8 -*-
|
|
#############################################################################
|
|
#
|
|
# Cybrosys Technologies Pvt. Ltd.
|
|
#
|
|
# Copyright (C) 2023-TODAY Cybrosys Technologies(<https://www.cybrosys.com>).
|
|
# Author: Subina P (odoo@cybrosys.com)
|
|
#
|
|
# You can modify it under the terms of the GNU AFFERO
|
|
# GENERAL PUBLIC LICENSE (AGPL v3), Version 3.
|
|
#
|
|
# 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 (AGPL v3) for more details.
|
|
#
|
|
# You should have received a copy of the GNU AFFERO GENERAL PUBLIC LICENSE
|
|
# (AGPL v3) along with this program.
|
|
# If not, see <http://www.gnu.org/licenses/>.
|
|
#
|
|
#############################################################################
|
|
import vonage
|
|
from telesign.messaging import MessagingClient
|
|
from twilio.rest import Client
|
|
from odoo import fields, models
|
|
|
|
|
|
class SendSms(models.TransientModel):
|
|
"""
|
|
Class for the wizard to send SMS.
|
|
Methods:
|
|
action_send_sms():
|
|
Button action to send SMS.
|
|
"""
|
|
_name = 'send.sms'
|
|
_description = 'Wizard To Send SMS'
|
|
|
|
sms_id = fields.Many2one('sms.gateway.config',
|
|
string='Connection ID',
|
|
help='Gateway record with credentials')
|
|
sms_to = fields.Char(string='Send To',
|
|
help='Enter the number to send the SMS')
|
|
text = fields.Text(string='Text', required=True,
|
|
help='Enter the text for the SMS')
|
|
|
|
def action_send_sms(self):
|
|
"""
|
|
Function to send SMS using different SMS gateway
|
|
"""
|
|
if self.sms_id.gateway_name == 'vonage':
|
|
client = vonage.Client(key=self.sms_id.vonage_key,
|
|
secret=self.sms_id.vonage_secret)
|
|
vonage.Sms(client)
|
|
for number in self.sms_to.split(','):
|
|
if number:
|
|
client.sms.send_message(
|
|
{
|
|
"from": 'Vonage APIs',
|
|
"to": number,
|
|
"text": self.text
|
|
}
|
|
)
|
|
elif self.sms_id.gateway_name == 'twilio':
|
|
client = Client(self.sms_id.twilio_account_sid,
|
|
self.sms_id.twilio_auth_token)
|
|
for number in self.sms_to.split(','):
|
|
if number:
|
|
client.messages.create(
|
|
body=self.text,
|
|
from_=self.sms_id.twilio_phone_number,
|
|
to=number
|
|
)
|
|
elif self.sms_id.gateway_name == 'telesign':
|
|
for number in self.sms_to.split(','):
|
|
if number:
|
|
messaging = MessagingClient(
|
|
self.sms_id.telesign_customer,
|
|
self.sms_id.telesign_api_key)
|
|
messaging.message(number, self.text, 'ARN')
|
|
|