Support for cleared boot.php

pull/1201/head
Michael 2021-11-04 20:32:16 +00:00
parent 95622a0f0d
commit 6a349e7fd9
15 changed files with 38 additions and 25 deletions

View File

@ -15,6 +15,7 @@ use Friendica\DI;
use Jaybizzle\CrawlerDetect\CrawlerDetect; use Jaybizzle\CrawlerDetect\CrawlerDetect;
use Friendica\Core\Logger; use Friendica\Core\Logger;
use Friendica\Core\Renderer; use Friendica\Core\Renderer;
use Friendica\Network\HTTPException\ForbiddenException;
require_once __DIR__ . DIRECTORY_SEPARATOR . 'vendor' . DIRECTORY_SEPARATOR . 'autoload.php'; require_once __DIR__ . DIRECTORY_SEPARATOR . 'vendor' . DIRECTORY_SEPARATOR . 'autoload.php';
@ -92,7 +93,7 @@ function blockbot_init_1(App $a) {
foreach ($agents as $agent) { foreach ($agents as $agent) {
if (stristr($_SERVER['HTTP_USER_AGENT'], $agent)) { if (stristr($_SERVER['HTTP_USER_AGENT'], $agent)) {
System::httpExit(403, 'Bots are not allowed'); throw new ForbiddenException('Bots are not allowed');
} }
} }
@ -130,5 +131,5 @@ function blockbot_init_1(App $a) {
} }
logger::info('Blocked bot', $logdata); logger::info('Blocked bot', $logdata);
System::httpExit(403, 'Bots are not allowed'); throw new ForbiddenException('Bots are not allowed');
} }

View File

@ -35,7 +35,7 @@ function cookienotice_install()
*/ */
function cookienotice_addon_admin(App $a, &$s) function cookienotice_addon_admin(App $a, &$s)
{ {
if (!is_site_admin()) { if (!$a->isSiteAdmin()) {
return; return;
} }
@ -63,7 +63,7 @@ function cookienotice_addon_admin(App $a, &$s)
*/ */
function cookienotice_addon_admin_post(App $a) function cookienotice_addon_admin_post(App $a)
{ {
if (!is_site_admin()) { if (!$a->isSiteAdmin()) {
return; return;
} }

View File

@ -204,7 +204,7 @@ function curweather_addon_settings(App $a, &$s)
// for accessing the API of openweathermap // for accessing the API of openweathermap
function curweather_addon_admin_post(App $a) function curweather_addon_admin_post(App $a)
{ {
if (!is_site_admin()) { if (!$a->isSiteAdmin()) {
return; return;
} }
@ -216,7 +216,7 @@ function curweather_addon_admin_post(App $a)
function curweather_addon_admin(App $a, &$o) function curweather_addon_admin(App $a, &$o)
{ {
if (!is_site_admin()) { if (!$a->isSiteAdmin()) {
return; return;
} }

View File

@ -1,4 +1,7 @@
<?php <?php
use Friendica\Core\System;
/** /**
* Super-skeletal class to interact with Diaspora. * Super-skeletal class to interact with Diaspora.
* *
@ -29,7 +32,7 @@ class Diaspora_Connection {
$this->setPassword($password); $this->setPassword($password);
} }
$this->cookiejar = tempnam(get_temppath(), 'cookies'); $this->cookiejar = tempnam(System::getTempPath(), 'cookies');
return $this; return $this;
} }

View File

@ -1,4 +1,7 @@
<?php <?php
use Friendica\Core\System;
/** /**
* Ein fies zusammengehackter PHP-Diaspory-Client, der direkt von diesem abgeschaut ist: * Ein fies zusammengehackter PHP-Diaspory-Client, der direkt von diesem abgeschaut ist:
* https://github.com/Javafant/diaspy/blob/master/client.py * https://github.com/Javafant/diaspy/blob/master/client.py
@ -11,7 +14,7 @@ class Diasphp {
$this->token_regex = '/content="(.*?)" name="csrf-token/'; $this->token_regex = '/content="(.*?)" name="csrf-token/';
$this->pod = $pod; $this->pod = $pod;
$this->cookiejar = tempnam(get_temppath(), 'cookies'); $this->cookiejar = tempnam(System::getTempPath(), 'cookies');
} }
function __destruct() { function __destruct() {

View File

@ -118,7 +118,7 @@ return $o;
} }
function irc_addon_admin_post (&$a) { function irc_addon_admin_post (&$a) {
if(! is_site_admin()) if(!$a->isSiteAdmin())
return; return;
if($_POST['irc-submit']) { if($_POST['irc-submit']) {

View File

@ -10,6 +10,7 @@ use Friendica\Content\Text\BBCode;
use Friendica\Core\Hook; use Friendica\Core\Hook;
use Friendica\Core\Logger; use Friendica\Core\Logger;
use Friendica\Core\Renderer; use Friendica\Core\Renderer;
use Friendica\Core\System;
use Friendica\Core\Worker; use Friendica\Core\Worker;
use Friendica\Database\DBA; use Friendica\Database\DBA;
use Friendica\DI; use Friendica\DI;
@ -204,7 +205,7 @@ function mailstream_do_images(&$item, &$attachments)
if (!$components) { if (!$components) {
continue; continue;
} }
$cookiejar = tempnam(get_temppath(), 'cookiejar-mailstream-'); $cookiejar = tempnam(System::getTempPath(), 'cookiejar-mailstream-');
$curlResult = DI::httpClient()->fetchFull($url, 0, '', $cookiejar); $curlResult = DI::httpClient()->fetchFull($url, 0, '', $cookiejar);
$attachments[$url] = [ $attachments[$url] = [
'data' => $curlResult->getBody(), 'data' => $curlResult->getBody(),

View File

@ -17,6 +17,8 @@
* FITNESS FOR A PARTICULAR PURPOSE. * FITNESS FOR A PARTICULAR PURPOSE.
*/ */
use Friendica\Core\System;
/** /**
* PHPMailer - PHP email creation and transport class. * PHPMailer - PHP email creation and transport class.
* @package PHPMailer * @package PHPMailer
@ -2350,11 +2352,11 @@ class PHPMailer
throw new phpmailerException($this->lang('extension_missing') . 'openssl'); throw new phpmailerException($this->lang('extension_missing') . 'openssl');
} }
// @TODO would be nice to use php://temp streams here, but need to wrap for PHP < 5.1 // @TODO would be nice to use php://temp streams here, but need to wrap for PHP < 5.1
$file = tempnam(get_temppath(), 'mail'); $file = tempnam(System::getTempPath(), 'mail');
if (false === file_put_contents($file, $body)) { if (false === file_put_contents($file, $body)) {
throw new phpmailerException($this->lang('signing') . ' Could not write temp file'); throw new phpmailerException($this->lang('signing') . ' Could not write temp file');
} }
$signed = tempnam(get_temppath(), 'signed'); $signed = tempnam(System::getTempPath(), 'signed');
//Workaround for PHP bug https://bugs.php.net/bug.php?id=69197 //Workaround for PHP bug https://bugs.php.net/bug.php?id=69197
if (empty($this->sign_extracerts_file)) { if (empty($this->sign_extracerts_file)) {
$sign = @openssl_pkcs7_sign( $sign = @openssl_pkcs7_sign(

View File

@ -25,7 +25,7 @@ function notifyall_addon_admin(App $a, &$o)
function notifyall_post(App $a) function notifyall_post(App $a)
{ {
if(!is_site_admin()) { if (!$a->isSiteAdmin()) {
return; return;
} }
@ -62,7 +62,7 @@ function notifyall_post(App $a)
function notifyall_content(&$a) function notifyall_content(&$a)
{ {
if (! is_site_admin()) { if (!$a->isSiteAdmin()) {
return ''; return '';
} }

View File

@ -19,7 +19,7 @@ function pageheader_install() {
function pageheader_addon_admin(App &$a, &$s) function pageheader_addon_admin(App &$a, &$s)
{ {
if(! is_site_admin()) { if (!$a->isSiteAdmin()) {
return; return;
} }
@ -43,7 +43,7 @@ function pageheader_addon_admin(App &$a, &$s)
function pageheader_addon_admin_post(App $a) function pageheader_addon_admin_post(App $a)
{ {
if(!is_site_admin()) { if (!$a->isSiteAdmin()) {
return; return;
} }

View File

@ -31,7 +31,7 @@ function rendertime_page_end(Friendica\App $a, &$o)
$ignored_modules = ["fbrowser"]; $ignored_modules = ["fbrowser"];
$ignored = in_array(DI::module()->getName(), $ignored_modules); $ignored = in_array(DI::module()->getName(), $ignored_modules);
if (is_site_admin() && (($_GET['mode'] ?? '') != 'minimal') && !DI::mode()->isMobile() && !DI::mode()->isMobile() && !$ignored) { if ($a->isSiteAdmin() && (($_GET['mode'] ?? '') != 'minimal') && !DI::mode()->isMobile() && !DI::mode()->isMobile() && !$ignored) {
$o = $o . '<div class="renderinfo">' . DI::l10n()->t("Database: %s/%s, Network: %s, Rendering: %s, Session: %s, I/O: %s, Other: %s, Total: %s", $o = $o . '<div class="renderinfo">' . DI::l10n()->t("Database: %s/%s, Network: %s, Rendering: %s, Session: %s, I/O: %s, Other: %s, Total: %s",
round($profiler->get('database') - $profiler->get('database_write'), 3), round($profiler->get('database') - $profiler->get('database_write'), 3),

View File

@ -2,6 +2,8 @@
namespace CodebirdSN; namespace CodebirdSN;
use Friendica\Core\System;
/** /**
* A Twitter library in PHP. * A Twitter library in PHP.
* *
@ -820,7 +822,7 @@ class CodebirdSN
} }
// To-Do // To-Do
$tempfile = tempnam(get_temppath(), "mimecheck"); $tempfile = tempnam(System::getTempPath(), "mimecheck");
file_put_contents($tempfile, $data); file_put_contents($tempfile, $data);
$mime = image_type_to_mime_type(exif_imagetype($tempfile)); $mime = image_type_to_mime_type(exif_imagetype($tempfile));
unlink($tempfile); unlink($tempfile);

View File

@ -47,6 +47,7 @@ use Friendica\Core\Hook;
use Friendica\Core\Logger; use Friendica\Core\Logger;
use Friendica\Core\Protocol; use Friendica\Core\Protocol;
use Friendica\Core\Renderer; use Friendica\Core\Renderer;
use Friendica\Core\System;
use Friendica\Database\DBA; use Friendica\Database\DBA;
use Friendica\DI; use Friendica\DI;
use Friendica\Model\Contact; use Friendica\Model\Contact;
@ -599,7 +600,7 @@ function statusnet_post_hook(App $a, &$b)
if ($image != "") { if ($image != "") {
$img_str = DI::httpClient()->fetch($image); $img_str = DI::httpClient()->fetch($image);
$tempfile = tempnam(get_temppath(), "cache"); $tempfile = tempnam(System::getTempPath(), "cache");
file_put_contents($tempfile, $img_str); file_put_contents($tempfile, $img_str);
$postdata = ["status" => $msg, "media[]" => $tempfile]; $postdata = ["status" => $msg, "media[]" => $tempfile];
} else { } else {
@ -1417,7 +1418,7 @@ function statusnet_convertmsg(App $a, $body)
} else { } else {
$img_str = DI::httpClient()->fetch($expanded_url, 4); $img_str = DI::httpClient()->fetch($expanded_url, 4);
$tempfile = tempnam(get_temppath(), "cache"); $tempfile = tempnam(System::getTempPath(), "cache");
file_put_contents($tempfile, $img_str); file_put_contents($tempfile, $img_str);
$mime = mime_content_type($tempfile); $mime = mime_content_type($tempfile);
unlink($tempfile); unlink($tempfile);

View File

@ -85,6 +85,7 @@ use Friendica\Model\Tag;
use Friendica\Model\User; use Friendica\Model\User;
use Friendica\Protocol\Activity; use Friendica\Protocol\Activity;
use Friendica\Core\Config\Util\ConfigFileLoader; use Friendica\Core\Config\Util\ConfigFileLoader;
use Friendica\Core\System;
use Friendica\Util\DateTimeFormat; use Friendica\Util\DateTimeFormat;
use Friendica\Util\Images; use Friendica\Util\Images;
use Friendica\Util\Strings; use Friendica\Util\Strings;
@ -734,7 +735,7 @@ function twitter_post_hook(App $a, array &$b)
$img_str = DI::httpClient()->fetch($image['url']); $img_str = DI::httpClient()->fetch($image['url']);
$tempfile = tempnam(get_temppath(), 'cache'); $tempfile = tempnam(System::getTempPath(), 'cache');
file_put_contents($tempfile, $img_str); file_put_contents($tempfile, $img_str);
Logger::info('Uploading', ['id' => $b['id'], 'image' => $image['url']]); Logger::info('Uploading', ['id' => $b['id'], 'image' => $image['url']]);

View File

@ -36,6 +36,7 @@ use Friendica\DI;
use Friendica\Model\Item; use Friendica\Model\Item;
use Friendica\Model\Post; use Friendica\Model\Post;
use Friendica\Model\User; use Friendica\Model\User;
use Friendica\Network\HTTPException\UnauthorizedException;
function windowsphonepush_install() function windowsphonepush_install()
{ {
@ -436,8 +437,7 @@ function windowsphonepush_login(App $a)
if (!isset($_SERVER['PHP_AUTH_USER'])) { if (!isset($_SERVER['PHP_AUTH_USER'])) {
Logger::info('API_login: ' . print_r($_SERVER, true)); Logger::info('API_login: ' . print_r($_SERVER, true));
header('WWW-Authenticate: Basic realm="Friendica"'); header('WWW-Authenticate: Basic realm="Friendica"');
header('HTTP/1.0 401 Unauthorized'); throw new UnauthorizedException('This api requires login');
die('This api requires login');
} }
$user_id = User::authenticate($_SERVER['PHP_AUTH_USER'], trim($_SERVER['PHP_AUTH_PW'])); $user_id = User::authenticate($_SERVER['PHP_AUTH_USER'], trim($_SERVER['PHP_AUTH_PW']));
@ -447,8 +447,7 @@ function windowsphonepush_login(App $a)
} else { } else {
Logger::info('API_login failure: ' . print_r($_SERVER, true)); Logger::info('API_login failure: ' . print_r($_SERVER, true));
header('WWW-Authenticate: Basic realm="Friendica"'); header('WWW-Authenticate: Basic realm="Friendica"');
header('HTTP/1.0 401 Unauthorized'); throw new UnauthorizedException('This api requires login');
die('This api requires login');
} }
DI::auth()->setForUser($a, $record); DI::auth()->setForUser($a, $record);