0
0
Fork 0
mirror of https://github.com/nextcloud/server.git synced 2025-05-19 12:42:11 +00:00
nextcloud_server/apps/workflowengine/lib/Check/RequestUserAgent.php

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

69 lines
1.8 KiB
PHP
Raw Normal View History

2016-07-28 13:01:50 +02:00
<?php
/**
* SPDX-FileCopyrightText: 2016 Nextcloud GmbH and Nextcloud contributors
* SPDX-License-Identifier: AGPL-3.0-or-later
2016-07-28 13:01:50 +02:00
*/
namespace OCA\WorkflowEngine\Check;
2016-08-01 17:56:33 +02:00
use OCP\IL10N;
2016-07-28 13:01:50 +02:00
use OCP\IRequest;
class RequestUserAgent extends AbstractStringCheck {
/**
2016-08-01 17:56:33 +02:00
* @param IL10N $l
2016-07-28 13:01:50 +02:00
* @param IRequest $request
*/
public function __construct(
IL10N $l,
protected IRequest $request,
) {
2016-08-01 17:56:33 +02:00
parent::__construct($l);
2016-07-28 13:01:50 +02:00
}
/**
* @param string $operator
* @param string $value
* @return bool
*/
public function executeCheck($operator, $value) {
2016-07-28 13:01:50 +02:00
$actualValue = $this->getActualValue();
if (in_array($operator, ['is', '!is'], true)) {
2016-07-28 13:01:50 +02:00
switch ($value) {
case 'android':
$operator = $operator === 'is' ? 'matches' : '!matches';
$value = IRequest::USER_AGENT_CLIENT_ANDROID;
break;
case 'ios':
$operator = $operator === 'is' ? 'matches' : '!matches';
$value = IRequest::USER_AGENT_CLIENT_IOS;
break;
case 'desktop':
$operator = $operator === 'is' ? 'matches' : '!matches';
$value = IRequest::USER_AGENT_CLIENT_DESKTOP;
break;
case 'mail':
if ($operator === 'is') {
return $this->executeStringCheck('matches', IRequest::USER_AGENT_OUTLOOK_ADDON, $actualValue)
|| $this->executeStringCheck('matches', IRequest::USER_AGENT_THUNDERBIRD_ADDON, $actualValue);
}
return $this->executeStringCheck('!matches', IRequest::USER_AGENT_OUTLOOK_ADDON, $actualValue)
&& $this->executeStringCheck('!matches', IRequest::USER_AGENT_THUNDERBIRD_ADDON, $actualValue);
2016-07-28 13:01:50 +02:00
}
}
return $this->executeStringCheck($operator, $value, $actualValue);
}
/**
* @return string
*/
protected function getActualValue() {
return $this->request->getHeader('User-Agent');
2016-07-28 13:01:50 +02:00
}
public function isAvailableForScope(int $scope): bool {
return true;
}
2016-07-28 13:01:50 +02:00
}