mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-04-17 17:32:15 +09:00
372 lines
6.5 KiB
PHP
372 lines
6.5 KiB
PHP
<?php
|
|
|
|
namespace Rhymix\Framework;
|
|
|
|
/**
|
|
* The SMS class.
|
|
*/
|
|
class SMS
|
|
{
|
|
/**
|
|
* Instance properties.
|
|
*/
|
|
public $driver = null;
|
|
public $caller = '';
|
|
protected $from = '';
|
|
protected $to = array();
|
|
protected $subject = '';
|
|
protected $content = '';
|
|
protected $attachments = array();
|
|
public $errors = array();
|
|
protected $sent = false;
|
|
|
|
/**
|
|
* Static properties.
|
|
*/
|
|
public static $default_driver = null;
|
|
public static $custom_drivers = array();
|
|
|
|
/**
|
|
* Set the default driver.
|
|
*
|
|
* @param object $driver
|
|
* @return void
|
|
*/
|
|
public static function setDefaultDriver(Drivers\SMSInterface $driver)
|
|
{
|
|
self::$default_driver = $driver;
|
|
}
|
|
|
|
/**
|
|
* Get the default driver.
|
|
*
|
|
* @return object
|
|
*/
|
|
public static function getDefaultDriver()
|
|
{
|
|
if (!self::$default_driver)
|
|
{
|
|
$default_driver = config('sms.type');
|
|
$default_driver_class = '\\Rhymix\\Framework\\Drivers\SMS\\' . $default_driver;
|
|
if (class_exists($default_driver_class))
|
|
{
|
|
$default_driver_config = config('sms.' . $default_driver) ?: array();
|
|
self::$default_driver = $default_driver_class::getInstance($default_driver_config);
|
|
}
|
|
}
|
|
return self::$default_driver;
|
|
}
|
|
|
|
/**
|
|
* Add a custom mail driver.
|
|
*/
|
|
public static function addDriver(Drivers\SMSInterface $driver)
|
|
{
|
|
self::$custom_drivers[] = $driver;
|
|
}
|
|
|
|
/**
|
|
* Get the list of supported mail drivers.
|
|
*
|
|
* @return array
|
|
*/
|
|
public static function getSupportedDrivers()
|
|
{
|
|
$result = array();
|
|
foreach (Storage::readDirectory(__DIR__ . '/drivers/sms', false) as $filename)
|
|
{
|
|
$driver_name = substr($filename, 0, -4);
|
|
$class_name = '\Rhymix\Framework\Drivers\SMS\\' . $driver_name;
|
|
if ($class_name::isSupported())
|
|
{
|
|
$result[$driver_name] = array(
|
|
'name' => $class_name::getName(),
|
|
'required' => $class_name::getRequiredConfig(),
|
|
'api_types' => $class_name::getAPITypes(),
|
|
);
|
|
}
|
|
}
|
|
foreach (self::$custom_drivers as $driver)
|
|
{
|
|
if ($driver->isSupported())
|
|
{
|
|
$result[strtolower(class_basename($driver))] = array(
|
|
'name' => $driver->getName(),
|
|
'required' => $driver->getRequiredConfig(),
|
|
'api_types' => $driver->getAPITypes(),
|
|
);
|
|
}
|
|
}
|
|
ksort($result);
|
|
return $result;
|
|
}
|
|
|
|
/**
|
|
* The constructor.
|
|
*/
|
|
public function __construct()
|
|
{
|
|
$this->driver = self::getDefaultDriver();
|
|
}
|
|
|
|
/**
|
|
* Set the sender's phone number.
|
|
*
|
|
* @param string $number Phone number
|
|
* @return bool
|
|
*/
|
|
public function setFrom($number)
|
|
{
|
|
$this->from = preg_replace('/[^0-9]/', '', $number);
|
|
return true;
|
|
}
|
|
|
|
/**
|
|
* Get the sender's phone number.
|
|
*
|
|
* @return string|null
|
|
*/
|
|
public function getFrom()
|
|
{
|
|
return $this->from;
|
|
}
|
|
|
|
/**
|
|
* Add a recipient.
|
|
*
|
|
* @param string $number Phone number
|
|
* @param string $country Country code (optional)
|
|
* @return bool
|
|
*/
|
|
public function addTo($number, $country = null)
|
|
{
|
|
$this->to[] = (object)array(
|
|
'number' => preg_replace('/[^0-9]/', '', $number),
|
|
'country' => $country,
|
|
);
|
|
return true;
|
|
}
|
|
|
|
/**
|
|
* Get the list of recipients without country codes.
|
|
*
|
|
* @return array
|
|
*/
|
|
public function getRecipients()
|
|
{
|
|
return array_map(function($recipient) {
|
|
return $recipient->number;
|
|
}, $this->to);
|
|
}
|
|
|
|
/**
|
|
* Get the list of recipients with country codes.
|
|
*
|
|
* @return array
|
|
*/
|
|
public function getRecipientsWithCountry()
|
|
{
|
|
return $this->to;
|
|
}
|
|
|
|
/**
|
|
* Set the subject.
|
|
*
|
|
* @param string $subject
|
|
* @return bool
|
|
*/
|
|
public function setSubject($subject)
|
|
{
|
|
$this->subject = utf8_trim(utf8_clean($subject));
|
|
return true;
|
|
}
|
|
|
|
/**
|
|
* Get the subject.
|
|
*
|
|
* @return string
|
|
*/
|
|
public function getSubject()
|
|
{
|
|
return $this->subject;
|
|
}
|
|
|
|
/**
|
|
* Set the subject (alias to setSubject).
|
|
*
|
|
* @param string $subject
|
|
* @return bool
|
|
*/
|
|
public function setTitle($subject)
|
|
{
|
|
return $this->setSubject($subject);
|
|
}
|
|
|
|
/**
|
|
* Get the subject (alias to getSubject).
|
|
*
|
|
* @return string
|
|
*/
|
|
public function getTitle()
|
|
{
|
|
return $this->getSubject();
|
|
}
|
|
|
|
/**
|
|
* Set the content.
|
|
*
|
|
* @param string $content
|
|
* @return bool
|
|
*/
|
|
public function setBody($content)
|
|
{
|
|
$this->content = utf8_trim(utf8_clean($content));
|
|
return true;
|
|
}
|
|
|
|
/**
|
|
* Get the content.
|
|
*
|
|
* @return string
|
|
*/
|
|
public function getBody()
|
|
{
|
|
return $this->content;
|
|
}
|
|
|
|
/**
|
|
* Set the content (alias to setBody).
|
|
*
|
|
* @param string $content
|
|
* @return void
|
|
*/
|
|
public function setContent($content)
|
|
{
|
|
return $this->setBody($content);
|
|
}
|
|
|
|
/**
|
|
* Get the content (alias to getBody).
|
|
*
|
|
* @return string
|
|
*/
|
|
public function getContent()
|
|
{
|
|
return $this->getBody();
|
|
}
|
|
|
|
/**
|
|
* Attach a file.
|
|
*
|
|
* @param string $local_filename
|
|
* @param string $display_filename (optional)
|
|
* @return bool
|
|
*/
|
|
public function attach($local_filename, $display_filename = null)
|
|
{
|
|
if ($display_filename === null)
|
|
{
|
|
$display_filename = basename($local_filename);
|
|
}
|
|
if (!Storage::exists($local_filename))
|
|
{
|
|
return false;
|
|
}
|
|
|
|
$this->attachments[] = (object)array(
|
|
'type' => 'mms',
|
|
'local_filename' => $local_filename,
|
|
'display_filename' => $display_filename,
|
|
'cid' => null,
|
|
);
|
|
return true;
|
|
}
|
|
|
|
/**
|
|
* Get the list of attachments to this message.
|
|
*
|
|
* @return array
|
|
*/
|
|
public function getAttachments()
|
|
{
|
|
return $this->attachments;
|
|
}
|
|
|
|
/**
|
|
* Send the email.
|
|
*
|
|
* @return bool
|
|
*/
|
|
public function send()
|
|
{
|
|
// Get caller information.
|
|
$backtrace = debug_backtrace(0);
|
|
if(count($backtrace) && isset($backtrace[0]['file']))
|
|
{
|
|
$this->caller = $backtrace[0]['file'] . ($backtrace[0]['line'] ? (' line ' . $backtrace[0]['line']) : '');
|
|
}
|
|
|
|
$output = \ModuleHandler::triggerCall('sms.send', 'before', $this);
|
|
if(!$output->toBool())
|
|
{
|
|
$this->errors[] = $output->getMessage();
|
|
return false;
|
|
}
|
|
|
|
try
|
|
{
|
|
if ($this->driver)
|
|
{
|
|
$this->sent = $this->driver->send($this) ? true : false;
|
|
}
|
|
else
|
|
{
|
|
$this->errors[] = 'No SMS driver selected';
|
|
$this->sent = false;
|
|
}
|
|
}
|
|
catch(\Exception $e)
|
|
{
|
|
$this->errors[] = $e->getMessage();
|
|
$this->sent = false;
|
|
}
|
|
|
|
$output = \ModuleHandler::triggerCall('sms.send', 'after', $this);
|
|
if(!$output->toBool())
|
|
{
|
|
$this->errors[] = $output->getMessage();
|
|
}
|
|
|
|
return $this->sent;
|
|
}
|
|
|
|
/**
|
|
* Check if the message was sent.
|
|
*
|
|
* @return bool
|
|
*/
|
|
public function isSent()
|
|
{
|
|
return $this->sent;
|
|
}
|
|
|
|
/**
|
|
* Get caller information.
|
|
*
|
|
* @return string
|
|
*/
|
|
public function getCaller()
|
|
{
|
|
return $this->caller;
|
|
}
|
|
|
|
/**
|
|
* Get errors.
|
|
*
|
|
* @return array
|
|
*/
|
|
public function getErrors()
|
|
{
|
|
return $this->errors;
|
|
}
|
|
}
|