-
-
Notifications
You must be signed in to change notification settings - Fork 4.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Georg Ehrke <[email protected]>
- Loading branch information
1 parent
0581356
commit 0e0e0d1
Showing
17 changed files
with
687 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,101 @@ | ||
<?php | ||
|
||
declare(strict_types=1); | ||
|
||
/** | ||
* @copyright Copyright (c) 2020, Georg Ehrke | ||
* | ||
* @author Georg Ehrke <[email protected]> | ||
* | ||
* @license AGPL-3.0 | ||
* | ||
* This code is free software: you can redistribute it and/or modify | ||
* it under the terms of the GNU Affero General Public License, version 3, | ||
* as published by the Free Software Foundation. | ||
* | ||
* This program is distributed in the hope that it will be useful, | ||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
* GNU Affero General Public License for more details. | ||
* | ||
* You should have received a copy of the GNU Affero General Public License, version 3, | ||
* along with this program. If not, see <http://www.gnu.org/licenses/> | ||
* | ||
*/ | ||
namespace OCA\UserStatus\Connector; | ||
|
||
use DateTimeImmutable; | ||
use OCP\UserStatus\IUserStatus; | ||
use OCA\UserStatus\Db; | ||
|
||
class UserStatus implements IUserStatus { | ||
|
||
/** @var string */ | ||
private $userId; | ||
|
||
/** @var string */ | ||
private $status; | ||
|
||
/** @var string|null */ | ||
private $message; | ||
|
||
/** @var string|null */ | ||
private $icon; | ||
|
||
/** @var DateTimeImmutable|null */ | ||
private $clearAt; | ||
|
||
/** | ||
* UserStatus constructor. | ||
* | ||
* @param Db\UserStatus $status | ||
*/ | ||
public function __construct(Db\UserStatus $status) { | ||
$this->userId = $status->getUserId(); | ||
$this->status = $status->getStatus(); | ||
$this->message = $status->getCustomMessage(); | ||
$this->icon = $status->getCustomIcon(); | ||
|
||
if ($status->getStatus() === 'invisible') { | ||
$this->status = 'offline'; | ||
} | ||
if ($status->getClearAt() !== null) { | ||
$this->clearAt = DateTimeImmutable::createFromFormat('U', (string)$status->getClearAt()); | ||
} | ||
} | ||
|
||
/** | ||
* @inheritDoc | ||
*/ | ||
public function getUserId(): string { | ||
return $this->userId; | ||
} | ||
|
||
/** | ||
* @inheritDoc | ||
*/ | ||
public function getStatus(): string { | ||
return $this->status; | ||
} | ||
|
||
/** | ||
* @inheritDoc | ||
*/ | ||
public function getMessage(): ?string { | ||
return $this->message; | ||
} | ||
|
||
/** | ||
* @inheritDoc | ||
*/ | ||
public function getIcon(): ?string { | ||
return $this->icon; | ||
} | ||
|
||
/** | ||
* @inheritDoc | ||
*/ | ||
public function getClearAt(): ?DateTimeImmutable { | ||
return $this->clearAt; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
<?php | ||
|
||
declare(strict_types=1); | ||
|
||
/** | ||
* @copyright Copyright (c) 2020, Georg Ehrke | ||
* | ||
* @author Georg Ehrke <[email protected]> | ||
* | ||
* @license AGPL-3.0 | ||
* | ||
* This code is free software: you can redistribute it and/or modify | ||
* it under the terms of the GNU Affero General Public License, version 3, | ||
* as published by the Free Software Foundation. | ||
* | ||
* This program is distributed in the hope that it will be useful, | ||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
* GNU Affero General Public License for more details. | ||
* | ||
* You should have received a copy of the GNU Affero General Public License, version 3, | ||
* along with this program. If not, see <http://www.gnu.org/licenses/> | ||
* | ||
*/ | ||
namespace OCA\UserStatus\Connector; | ||
|
||
use OCA\UserStatus\Service\StatusService; | ||
use OCP\UserStatus\IProvider; | ||
|
||
class UserStatusProvider implements IProvider { | ||
|
||
/** @var StatusService */ | ||
private $service; | ||
|
||
/** | ||
* UserStatusProvider constructor. | ||
* | ||
* @param StatusService $service | ||
*/ | ||
public function __construct(StatusService $service) { | ||
$this->service = $service; | ||
} | ||
|
||
/** | ||
* @inheritDoc | ||
*/ | ||
public function getUserStatuses(array $userIds): array { | ||
$statuses = $this->service->findByUserIds($userIds); | ||
|
||
$userStatuses = []; | ||
foreach ($statuses as $status) { | ||
$userStatuses[$status->getUserId()] = new UserStatus($status); | ||
} | ||
|
||
return $userStatuses; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
93 changes: 93 additions & 0 deletions
93
apps/user_status/tests/Unit/Connector/UserStatusProviderTest.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,93 @@ | ||
<?php | ||
|
||
declare(strict_types=1); | ||
|
||
/** | ||
* @copyright Copyright (c) 2020, Georg Ehrke | ||
* | ||
* @author Georg Ehrke <[email protected]> | ||
* | ||
* @license AGPL-3.0 | ||
* | ||
* This code is free software: you can redistribute it and/or modify | ||
* it under the terms of the GNU Affero General Public License, version 3, | ||
* as published by the Free Software Foundation. | ||
* | ||
* This program is distributed in the hope that it will be useful, | ||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
* GNU Affero General Public License for more details. | ||
* | ||
* You should have received a copy of the GNU Affero General Public License, version 3, | ||
* along with this program. If not, see <http://www.gnu.org/licenses/> | ||
* | ||
*/ | ||
|
||
namespace OCA\UserStatus\Tests\Connector; | ||
|
||
use OCA\UserStatus\Connector\UserStatusProvider; | ||
use OCA\UserStatus\Db\UserStatus; | ||
use OCA\UserStatus\Service\StatusService; | ||
use Test\TestCase; | ||
|
||
class UserStatusProviderTest extends TestCase { | ||
|
||
/** @var \PHPUnit\Framework\MockObject\MockObject */ | ||
private $service; | ||
|
||
/** @var UserStatusProvider */ | ||
private $provider; | ||
|
||
protected function setUp(): void { | ||
parent::setUp(); | ||
|
||
$this->service = $this->createMock(StatusService::class); | ||
$this->provider = new UserStatusProvider($this->service); | ||
} | ||
|
||
public function testGetUserStatuses(): void { | ||
$userStatus2 = new UserStatus(); | ||
$userStatus2->setUserId('userId2'); | ||
$userStatus2->setStatus('dnd'); | ||
$userStatus2->setStatusTimestamp(5000); | ||
$userStatus2->setIsUserDefined(true); | ||
$userStatus2->setCustomIcon('💩'); | ||
$userStatus2->setCustomMessage('Do not disturb'); | ||
$userStatus2->setClearAt(50000); | ||
|
||
$userStatus3 = new UserStatus(); | ||
$userStatus3->setUserId('userId3'); | ||
$userStatus3->setStatus('away'); | ||
$userStatus3->setStatusTimestamp(5000); | ||
$userStatus3->setIsUserDefined(false); | ||
$userStatus3->setCustomIcon('🏝'); | ||
$userStatus3->setCustomMessage('On vacation'); | ||
$userStatus3->setClearAt(60000); | ||
|
||
$this->service->expects($this->once()) | ||
->method('findByUserIds') | ||
->with(['userId1', 'userId2', 'userId3']) | ||
->willReturn([$userStatus2, $userStatus3]); | ||
|
||
$actual = $this->provider->getUserStatuses(['userId1', 'userId2', 'userId3']); | ||
|
||
$this->assertCount(2, $actual); | ||
$status2 = $actual['userId2']; | ||
$this->assertEquals('userId2', $status2->getUserId()); | ||
$this->assertEquals('dnd', $status2->getStatus()); | ||
$this->assertEquals('Do not disturb', $status2->getMessage()); | ||
$this->assertEquals('💩', $status2->getIcon()); | ||
$dateTime2 = $status2->getClearAt(); | ||
$this->assertInstanceOf(\DateTimeImmutable::class, $dateTime2); | ||
$this->assertEquals('50000', $dateTime2->format('U')); | ||
|
||
$status3 = $actual['userId3']; | ||
$this->assertEquals('userId3', $status3->getUserId()); | ||
$this->assertEquals('away', $status3->getStatus()); | ||
$this->assertEquals('On vacation', $status3->getMessage()); | ||
$this->assertEquals('🏝', $status3->getIcon()); | ||
$dateTime3 = $status3->getClearAt(); | ||
$this->assertInstanceOf(\DateTimeImmutable::class, $dateTime3); | ||
$this->assertEquals('60000', $dateTime3->format('U')); | ||
} | ||
} |
Oops, something went wrong.