1
0
Fork 0
smsgateway/smsSender.php

96 lines
3.3 KiB
PHP
Raw Normal View History

2011-09-29 16:09:59 +00:00
<?php
2011-09-30 11:42:45 +00:00
require_once 'smsToken.php';
2011-09-29 16:09:59 +00:00
class smsSender
{
2011-09-29 16:50:21 +00:00
protected $sessionId = null;
2011-09-30 11:42:45 +00:00
protected $dbBackend;
protected $smsBackend;
2011-09-29 16:09:59 +00:00
2011-09-30 11:42:45 +00:00
public function __construct($dbBackend, $smsBackend, $sessionId)
2011-09-29 16:50:21 +00:00
{
$this->sessionId = $sessionId;
2011-09-30 11:42:45 +00:00
$this->dbBackend = $dbBackend;
$this->smsBackend = $smsBackend;
2011-09-29 16:50:21 +00:00
}
2011-09-29 16:09:59 +00:00
2011-09-29 16:50:21 +00:00
public function login($username, $password)
{
2011-09-30 11:42:45 +00:00
$token = '';
2011-09-29 16:50:21 +00:00
try
{
2011-09-30 11:42:45 +00:00
$token = $this->dbBackend->getToken($username, $password, $_SERVER['REMOTE_ADDR'], $this->sessionId);
2011-09-29 16:50:21 +00:00
}
catch (Exception $e)
{
throw new Exception('Authentication failed. Reason: ' . $e->getMessage());
}
2011-09-30 11:42:45 +00:00
$this->dbBackend->auditLog($_SERVER['REMOTE_ADDR'], 'login', 'Successful login by ' . $username);
2011-09-29 16:50:21 +00:00
return $token;
}
2011-09-29 16:09:59 +00:00
2011-09-29 16:50:21 +00:00
public function send($token, $recipient, $message, $passwordLocations)
{
2011-09-30 11:42:45 +00:00
try
{
$tokenObj = $this->dbBackend->checkToken($token, $this->sessionId, $_SERVER['REMOTE_ADDR']);
}
catch (Exception $e)
{
$this->dbBackend->auditLog($_SERVER['REMOTE_ADDR'], 'send', 'Message sending attempt by invalid token ' . $token);
throw new Exception('Authentication failed. Reason: Bad Token', 0, $e);
}
try
{
$this->smsBackend->sendSMS($recipient, $message);
$this->dbBackend->auditLog($_SERVER['REMOTE_ADDR'], 'send', 'Successful SMS sending by ' . $tokenObj->getUsername());
$this->dbBackend->messageLog($tokenObj->getUserId(), $recipient, $this->maskPasswords($message, $passwordLocations), $_SERVER['REMOTE_ADDR']);
return 'success';
}
catch (PDOException $e)
{
error_log('SMS sending cannot be logged due to a database error!');
$this->dbBackend->auditLog($_SERVER['REMOTE_ADDR'], 'send', 'SMS sending by ' . $tokenObj->getUserName() . ' cannot be logged due to a database error');
}
catch (Exception $e)
{
$this->dbBackend->auditLog($_SERVER['REMOTE_ADDR'], 'send', 'Error during SMS sending by user ' . $token->getUserName() . ': ' . $e->getMessage());
error_log('Error during SMS sending: ' . $e->getMessage());
}
throw new Exception('Send failed: Unknown Error');
}
protected function maskPasswords($message, $passwordLocations)
{
$msg = $message;
foreach ($passwordLocations as $loc)
{
$msg = substr_replace($msg, '<masked password>', $loc[0], $loc[1]);
}
return $msg;
2011-09-29 16:50:21 +00:00
}
2011-09-29 16:09:59 +00:00
2011-09-29 16:50:21 +00:00
public function logout($token)
{
2011-09-30 11:42:45 +00:00
try
{
$username = $this->dbBackend->removeToken($_SERVER['REMOTE_ADDR'], $this->sessionId, $token);
$this->dbBackend->auditLog($_SERVER['REMOTE_ADDR'], 'logout', $username . ' logged out successfully');
session_destroy();
session_id('');
unset($_COOKIE['PHPSESSID']);
return 'success';
}
catch (Exception $e)
{
error_log('Logout failed: ' . $e->getMessage());
$this->dbBackend->auditLog('Logout failed: ' . $e->getMessage());
throw new Exception('Logout failed: Internal Server Error');
}
2011-09-29 16:50:21 +00:00
}
2011-09-29 16:09:59 +00:00
}