removing PMGmail
This commit is contained in:
File diff suppressed because it is too large
Load Diff
@@ -14,7 +14,6 @@ use Exception;
|
||||
use G;
|
||||
use Illuminate\Support\Facades\Log;
|
||||
use ProcessMaker\BusinessModel\Cases\InputDocument;
|
||||
use ProcessMaker\BusinessModel\Pmgmail;
|
||||
use ProcessMaker\ChangeLog\ChangeLog;
|
||||
use stdClass;
|
||||
use Users;
|
||||
@@ -144,19 +143,6 @@ trait CasesTrait
|
||||
|
||||
$fromData = $fromName . ($userInfo['USR_EMAIL'] != '' ? ' <' . $userInfo['USR_EMAIL'] . '>' : '');
|
||||
|
||||
if ($flagGmail === true) {
|
||||
$appDel = new AppDelegation();
|
||||
$actualThread = $appDel->Load($application, $index);
|
||||
|
||||
$appDelPrev = $appDel->LoadParallel($application);
|
||||
$pmGmail = new Pmgmail();
|
||||
foreach ($appDelPrev as $app) {
|
||||
if (($app['DEL_INDEX'] != $index) && ($app['DEL_PREVIOUS'] != $actualThread['DEL_PREVIOUS'])) {
|
||||
$pmGmail->gmailsIfSelfServiceValueBased($application, $app['DEL_INDEX'], $postForm['TASKS'], $appFields['APP_DATA']);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
try {
|
||||
$this->sendNotifications($tasUid, $postForm['TASKS'], $appFields['APP_DATA'], $application, $index, $fromData);
|
||||
} catch (Exception $e) {
|
||||
@@ -203,7 +189,7 @@ trait CasesTrait
|
||||
}
|
||||
|
||||
/**
|
||||
* This initiates the routing of the case given the application and the form
|
||||
* This initiates the routing of the case given the application and the form
|
||||
* data in the email application interface.
|
||||
* @param string $appUid
|
||||
* @param int $delIndex
|
||||
|
||||
@@ -1,137 +0,0 @@
|
||||
<?php
|
||||
namespace ProcessMaker\Services\Api;
|
||||
|
||||
use \ProcessMaker\Services\Api;
|
||||
use \Luracast\Restler\RestException;
|
||||
|
||||
|
||||
/**
|
||||
* GmailIntegration Api Controller
|
||||
*
|
||||
*
|
||||
* @protected
|
||||
*/
|
||||
class GmailIntegration extends Api
|
||||
{
|
||||
/**
|
||||
* Get User by usr_gmail
|
||||
*
|
||||
* @param string $usr_gmail {@from path}
|
||||
*
|
||||
*
|
||||
* @url GET /userexist/:usr_gmail
|
||||
*
|
||||
*/
|
||||
public function doGetUserbyEmail($usr_gmail)
|
||||
{
|
||||
try {
|
||||
$Pmgmail = new \ProcessMaker\BusinessModel\Pmgmail();
|
||||
$response = $Pmgmail->getUserByEmail($usr_gmail);
|
||||
return $response;
|
||||
} catch (\Exception $e) {
|
||||
throw (new RestException(Api::STAT_APP_EXCEPTION, $e->getMessage()));
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Get Application by app_uid
|
||||
*
|
||||
* @param string $app_uid {@from path}
|
||||
*
|
||||
*
|
||||
* @url GET /application/:app_uid
|
||||
*
|
||||
*/
|
||||
public function doGetApplication($app_uid)
|
||||
{
|
||||
try {
|
||||
$Pmgmail = new \ProcessMaker\BusinessModel\Pmgmail();
|
||||
$response = $Pmgmail->getDraftApp($app_uid);
|
||||
return $response;
|
||||
} catch (\Exception $e) {
|
||||
throw (new RestException(Api::STAT_APP_EXCEPTION, $e->getMessage()));
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Send Email
|
||||
*
|
||||
* @param string $app_uid {@from path}
|
||||
* @param string $mail {@from path}
|
||||
* @param string $index {@from path}
|
||||
*
|
||||
*
|
||||
* @url POST /sendEmail/:app_uid/to/:mail/index/:index
|
||||
*
|
||||
*/
|
||||
public function doPostSendMail($app_uid, $mail, $index)
|
||||
{
|
||||
try {
|
||||
$Pmgmail = new \ProcessMaker\BusinessModel\Pmgmail();
|
||||
$response = $Pmgmail->sendGmail($app_uid, $mail, $index);
|
||||
return $response;
|
||||
} catch (\Exception $e) {
|
||||
throw (new RestException(Api::STAT_APP_EXCEPTION, $e->getMessage()));
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Get if the license has the gmail integration feature
|
||||
*
|
||||
*
|
||||
* @url GET /verifyGmailfeature
|
||||
*
|
||||
*/
|
||||
public function doGetVerifyGmailFeature()
|
||||
{
|
||||
try {
|
||||
$Pmgmail = new \ProcessMaker\BusinessModel\Pmgmail();
|
||||
$response = $Pmgmail->hasGmailFeature();
|
||||
return $response;
|
||||
} catch (\Exception $e) {
|
||||
throw (new RestException(Api::STAT_APP_EXCEPTION, $e->getMessage()));
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Get the default 'email from account' that is used to send emails in the server email in PM
|
||||
*
|
||||
*
|
||||
* @url GET /current-email-account
|
||||
*
|
||||
*/
|
||||
public function doGetEmailAccount()
|
||||
{
|
||||
try {
|
||||
$Pmgmail = new \ProcessMaker\BusinessModel\Pmgmail();
|
||||
$response = $Pmgmail->emailAccount();
|
||||
return $response;
|
||||
} catch (\Exception $e) {
|
||||
throw (new RestException(Api::STAT_APP_EXCEPTION, $e->getMessage()));
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* End Point to delete Labels in an uninstalation of the extension
|
||||
*
|
||||
* @param string $mail {@from path}
|
||||
*
|
||||
*
|
||||
* @url POST /deleteLabels/:mail
|
||||
*
|
||||
*/
|
||||
public function doPostDeleteLabels($mail)
|
||||
{
|
||||
try {
|
||||
$Pmgmail = new \ProcessMaker\BusinessModel\Pmgmail();
|
||||
$response = $Pmgmail->deleteLabels($mail);
|
||||
return $response;
|
||||
} catch (\Exception $e) {
|
||||
throw (new RestException(Api::STAT_APP_EXCEPTION, $e->getMessage()));
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
|
||||
@@ -1,32 +0,0 @@
|
||||
<?php
|
||||
|
||||
namespace ProcessMaker\Services\Api\Google;
|
||||
|
||||
use \ProcessMaker\Services\Api;
|
||||
use \Luracast\Restler\RestException;
|
||||
|
||||
class Authentication extends Api
|
||||
{
|
||||
|
||||
/**
|
||||
* Get token for user gmail
|
||||
*
|
||||
* @param array $request_data
|
||||
*
|
||||
* @return array
|
||||
*
|
||||
* @url POST /gmail
|
||||
*
|
||||
*
|
||||
*/
|
||||
public function doAuthenticationAccountGmail ($request_data)
|
||||
{
|
||||
try{
|
||||
$oGoogle = new \ProcessMaker\Services\Google\Authentication();
|
||||
$response = $oGoogle->postTokenAccountGmail($request_data);
|
||||
return $response;
|
||||
} catch (\Exception $e){
|
||||
throw (new RestException(Api::STAT_APP_EXCEPTION, $e->getMessage()));
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -1,77 +0,0 @@
|
||||
<?php
|
||||
namespace ProcessMaker\Services\Google;
|
||||
|
||||
class Authentication
|
||||
{
|
||||
/**
|
||||
* Post Token by user Gmail
|
||||
*
|
||||
* @param array $request_data
|
||||
*
|
||||
*/
|
||||
public function postTokenAccountGmail($request_data)
|
||||
{
|
||||
$responseToken = array('msg' => 'Upgrade');
|
||||
|
||||
//Lets verify the gmail token
|
||||
$url = 'https://www.googleapis.com/oauth2/v1/tokeninfo?access_token='.$request_data['token'];
|
||||
|
||||
// init curl object
|
||||
$ch = curl_init();
|
||||
// define options
|
||||
$optArray = array(
|
||||
CURLOPT_URL => $url,
|
||||
CURLOPT_RETURNTRANSFER => true,
|
||||
CURLOPT_SSL_VERIFYPEER => false
|
||||
);
|
||||
// apply those options
|
||||
curl_setopt_array($ch, $optArray);
|
||||
// execute request and get response
|
||||
$result = curl_exec($ch);
|
||||
$response = (json_decode($result));
|
||||
// Check if any error occurred
|
||||
if(curl_errno($ch))
|
||||
{
|
||||
throw (new \Exception(curl_error($ch)));
|
||||
}
|
||||
$info = curl_getinfo($ch);
|
||||
curl_close($ch);
|
||||
|
||||
//If there is response
|
||||
if($info['http_code'] == 200 && isset($response->email)){
|
||||
//If the usermail that was send in the end point es the same of the one in the response
|
||||
if($request_data['mail'] == $response->email){
|
||||
$oUsers = new \Users();
|
||||
$userExist = $oUsers->loadByUserEmailInArray($request_data['mail']);
|
||||
|
||||
if(!$userExist){
|
||||
throw (new \Exception(\G::LoadTranslation( 'ID_USER_NOT_FOUND')));
|
||||
}
|
||||
if(count($userExist) > 1){
|
||||
throw (new \Exception(\G::LoadTranslation( 'ID_EMAIL_MORE_USER')));
|
||||
}
|
||||
if($userExist['0']['USR_STATUS'] != "ACTIVE"){
|
||||
throw (new \Exception(\G::LoadTranslation('ID_USER_NOT_ACTIVE')));
|
||||
}
|
||||
$userExist = $userExist['0'];
|
||||
$oauthServer = new \ProcessMaker\Services\OAuth2\Server;
|
||||
$server = $oauthServer->getServer();
|
||||
$config = array(
|
||||
'allow_implicit' => $server->getConfig('allow_implicit'),
|
||||
'access_lifetime' => $server->getConfig('access_lifetime')
|
||||
);
|
||||
$storage = $server->getStorages();
|
||||
$accessToken = new \OAuth2\ResponseType\AccessToken($storage['access_token'],$storage['refresh_token'],$config);
|
||||
$responseToken = $accessToken->createAccessToken($request_data['clientid'], $userExist['USR_UID'],$request_data['scope']);
|
||||
|
||||
} else {
|
||||
throw (new \Exception(\G::LoadTranslation( 'ID_EMAIL_NOT_CORRESPONDS_TOKEN' )));
|
||||
}
|
||||
}else {
|
||||
throw (new \Exception(\G::LoadTranslation( 'ID_PMGMAIL_VALID' )));
|
||||
}
|
||||
|
||||
return $responseToken;
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user