passman/lib/Service/CronService.php

57 lines
1.9 KiB
PHP
Raw Normal View History

<?php
/**
* Nextcloud - passman
*
* This file is licensed under the Affero General Public License version 3 or
* later. See the COPYING file.
*
* @author Sander Brand <brantje@gmail.com>
* @copyright Sander Brand 2016
*/
namespace OCA\Passman\Service;
use OCP\IConfig;
use OCP\AppFramework\Db\DoesNotExistException;
use OCP\ILogger;
use OCA\Passman\Utility\Utils;
2016-09-23 22:52:41 +08:00
use OCA\Passman\Activity;
use OCP\IDBConnection;
class CronService {
private $credentialService;
private $logger;
private $utils;
private $notificationService;
2016-09-23 22:52:41 +08:00
private $activityService;
private $db;
public function __construct(CredentialService $credentialService, ILogger $logger, Utils $utils, NotificationService $notificationService, ActivityService $activityService, $db) {
$this->credentialService = $credentialService;
$this->logger = $logger;
$this->utils = $utils;
$this->notificationService = $notificationService;
2016-09-23 22:52:41 +08:00
$this->activityService = $activityService;
$this->db = $db;
}
public function expireCredentials() {
$this->logger->info('Passman cron test', array('app' => 'passman'));
$expired_credentials = $this->credentialService->getExpiredCredentials($this->utils->getTime());
foreach($expired_credentials as $credential){
2016-09-23 22:52:41 +08:00
$link = ''; // @TODO create direct link to credential
2016-09-24 03:09:06 +08:00
$sql = 'SELECT count(*) as rows from `*PREFIX*notifications` WHERE `subject`= \'credential_expired\' AND object_id=?';
$query = $this->db->prepareQuery($sql);
$query->bindParam(1, $credential->getId(), \PDO::PARAM_INT);
$result = $query->execute();
if($result->fetchRow()['rows'] === 0) {
$this->activityService->add(
Activity::SUBJECT_ITEM_EXPIRED, array($credential->getLabel(), $credential->getUserId()),
'', array(),
$link, $credential->getUserId(), Activity::TYPE_ITEM_ACTION);
$this->notificationService->credentialExpiredNotification($credential);
}
2016-09-23 22:52:41 +08:00
}
}
}