Replaced deprecated functionalities

This commit is contained in:
Michael 2021-11-07 14:01:30 +00:00
parent cff3dd67b0
commit 25b267c6da
2 changed files with 11 additions and 6 deletions

View File

@ -24,13 +24,13 @@
*/
use Friendica\App;
use Friendica\Core\Addon;
use Friendica\Core\Hook;
use Friendica\Core\Renderer;
use Friendica\DI;
function nitter_install()
{
Addon::registerHook ('prepare_body_final', 'addon/nitter/nitter.php', 'nitter_render');
Hook::register('prepare_body_final', 'addon/nitter/nitter.php', 'nitter_render');
}
/* Handle the send data from the admin settings

View File

@ -440,11 +440,16 @@ function windowsphonepush_login(App $a)
throw new UnauthorizedException('This api requires login');
}
$user_id = User::authenticate($_SERVER['PHP_AUTH_USER'], trim($_SERVER['PHP_AUTH_PW']));
try {
$user_id = User::getIdFromPasswordAuthentication($_SERVER['PHP_AUTH_USER'], trim($_SERVER['PHP_AUTH_PW']));
if ($user_id) {
$record = DBA::selectFirst('user', [], ['uid' => $user_id]);
}
} catch (Exception $ex) {
$record = [];
}
if ($user_id) {
$record = DBA::selectFirst('user', [], ['uid' => $user_id]);
} else {
if (empty($record)) {
Logger::info('API_login failure: ' . print_r($_SERVER, true));
header('WWW-Authenticate: Basic realm="Friendica"');
throw new UnauthorizedException('This api requires login');