2019-05-05 19:02:19 +02:00
|
|
|
<?php
|
2020-02-09 15:45:36 +01:00
|
|
|
/**
|
2023-01-01 15:36:24 +01:00
|
|
|
* @copyright Copyright (C) 2010-2023, the Friendica project
|
2020-02-09 15:45:36 +01:00
|
|
|
*
|
|
|
|
* @license GNU AGPL version 3 or any later version
|
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Affero General Public License as
|
|
|
|
* published by the Free Software Foundation, either version 3 of the
|
|
|
|
* License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* 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
|
|
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
*
|
|
|
|
*/
|
2019-05-05 19:02:19 +02:00
|
|
|
|
|
|
|
namespace Friendica\Module;
|
|
|
|
|
|
|
|
use Friendica\BaseModule;
|
2022-04-10 10:31:55 +02:00
|
|
|
use Friendica\Core\System;
|
2019-05-05 19:02:19 +02:00
|
|
|
use Friendica\Model\User;
|
|
|
|
use Friendica\Network\HTTPException\BadRequestException;
|
2022-11-23 19:45:58 +01:00
|
|
|
use Friendica\Protocol\Salmon;
|
2019-05-05 19:02:19 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* prints the public RSA key of a user
|
|
|
|
*/
|
|
|
|
class PublicRSAKey extends BaseModule
|
|
|
|
{
|
2021-11-20 15:38:03 +01:00
|
|
|
protected function rawContent(array $request = [])
|
2019-05-05 19:02:19 +02:00
|
|
|
{
|
2021-11-14 23:19:25 +01:00
|
|
|
if (empty($this->parameters['nick'])) {
|
2019-05-05 19:02:19 +02:00
|
|
|
throw new BadRequestException();
|
|
|
|
}
|
|
|
|
|
2021-11-14 23:19:25 +01:00
|
|
|
$nick = $this->parameters['nick'];
|
2019-05-05 19:02:19 +02:00
|
|
|
|
|
|
|
$user = User::getByNickname($nick, ['spubkey']);
|
|
|
|
if (empty($user) || empty($user['spubkey'])) {
|
|
|
|
throw new BadRequestException();
|
|
|
|
}
|
|
|
|
|
2022-11-23 19:45:58 +01:00
|
|
|
System::httpExit(
|
|
|
|
Salmon::salmonKey($user['spubkey']),
|
|
|
|
Response::TYPE_BLANK,
|
|
|
|
'application/magic-public-key'
|
|
|
|
);
|
2019-05-05 19:02:19 +02:00
|
|
|
}
|
|
|
|
}
|