1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-22 09:21:34 +02:00
invoiceninja/app/Http/Middleware/StartupCheck.php

182 lines
7.1 KiB
PHP
Raw Normal View History

2015-04-08 15:19:17 +02:00
<?php namespace app\Http\Middleware;
2015-03-17 02:30:56 +01:00
2015-05-11 13:16:36 +02:00
use Request;
2015-03-17 02:30:56 +01:00
use Closure;
use Utils;
use App;
2015-03-23 07:52:01 +01:00
use Auth;
use Input;
use Redirect;
2015-03-30 21:45:10 +02:00
use Cache;
2015-04-02 15:06:16 +02:00
use Session;
use Event;
2015-04-14 05:22:33 +02:00
use App\Models\Language;
2015-05-08 10:21:29 +02:00
use App\Models\InvoiceDesign;
2015-04-15 18:35:41 +02:00
use App\Events\UserSettingsChanged;
2015-03-17 02:30:56 +01:00
2015-04-08 15:19:17 +02:00
class StartupCheck
{
/**
* Handle an incoming request.
*
* @param \Illuminate\Http\Request $request
* @param \Closure $next
* @return mixed
*/
public function handle($request, Closure $next)
{
// Set up trusted X-Forwarded-Proto proxies
// TRUSTED_PROXIES accepts a comma delimited list of subnets
2015-10-14 19:18:19 +02:00
// ie, TRUSTED_PROXIES='10.0.0.0/8,172.16.0.0/12,192.168.0.0/16'
if (isset($_ENV['TRUSTED_PROXIES'])) {
2015-10-14 19:18:19 +02:00
Request::setTrustedProxies(array_map('trim', explode(',', env('TRUSTED_PROXIES'))));
}
2015-10-14 19:18:19 +02:00
2015-04-08 15:19:17 +02:00
// Ensure all request are over HTTPS in production
2015-11-22 10:59:56 +01:00
if (Utils::isNinjaProd() && !Request::secure()) {
2015-09-25 11:57:40 +02:00
return Redirect::secure(Request::getRequestUri());
2015-04-08 15:19:17 +02:00
}
// If the database doens't yet exist we'll skip the rest
if (!Utils::isNinja() && !Utils::isDatabaseSetup()) {
return $next($request);
2015-03-30 21:45:10 +02:00
}
2015-03-17 02:30:56 +01:00
2015-09-25 11:57:40 +02:00
// Check if a new version was installed
if (!Utils::isNinja()) {
$file = storage_path() . '/version.txt';
$version = @file_get_contents($file);
if ($version != NINJA_VERSION) {
$handle = fopen($file, 'w');
fwrite($handle, NINJA_VERSION);
fclose($handle);
return Redirect::to('/update');
}
}
// Check the application is up to date and for any news feed messages
2015-04-08 15:19:17 +02:00
if (Auth::check()) {
$count = Session::get(SESSION_COUNTER, 0);
Session::put(SESSION_COUNTER, ++$count);
2015-08-20 17:09:04 +02:00
if (isset($_SERVER['REQUEST_URI']) && !Utils::startsWith($_SERVER['REQUEST_URI'], '/news_feed') && !Session::has('news_feed_id')) {
2015-04-08 15:19:17 +02:00
$data = false;
if (Utils::isNinja()) {
$data = Utils::getNewsFeedResponse();
} else {
$file = @file_get_contents(NINJA_APP_URL.'/news_feed/'.Utils::getUserType().'/'.NINJA_VERSION);
$data = @json_decode($file);
}
if ($data) {
2015-04-30 19:54:19 +02:00
if (version_compare(NINJA_VERSION, $data->version, '<')) {
2015-04-08 15:19:17 +02:00
$params = [
2015-04-30 19:54:19 +02:00
'user_version' => NINJA_VERSION,
'latest_version' => $data->version,
'releases_link' => link_to(RELEASES_URL, 'Invoice Ninja', ['target' => '_blank']),
];
2015-04-08 15:19:17 +02:00
Session::put('news_feed_id', NEW_VERSION_AVAILABLE);
Session::put('news_feed_message', trans('texts.new_version_available', $params));
} else {
Session::put('news_feed_id', $data->id);
if ($data->message && $data->id > Auth::user()->news_feed_id) {
Session::put('news_feed_message', $data->message);
}
}
} else {
Session::put('news_feed_id', true);
}
}
}
2015-03-30 21:56:01 +02:00
2015-04-08 15:19:17 +02:00
// Check if we're requesting to change the account's language
if (Input::has('lang')) {
$locale = Input::get('lang');
App::setLocale($locale);
Session::set(SESSION_LOCALE, $locale);
if (Auth::check()) {
if ($language = Language::whereLocale($locale)->first()) {
$account = Auth::user()->account;
$account->language_id = $language->id;
$account->save();
}
}
} elseif (Auth::check()) {
$locale = Auth::user()->account->language ? Auth::user()->account->language->locale : DEFAULT_LOCALE;
2015-04-08 15:19:17 +02:00
App::setLocale($locale);
2015-11-18 22:37:11 +01:00
} elseif (session(SESSION_LOCALE)) {
App::setLocale(session(SESSION_LOCALE));
2015-04-08 15:19:17 +02:00
}
// Make sure the account/user localization settings are in the session
if (Auth::check() && !Session::has(SESSION_TIMEZONE)) {
2015-03-31 20:50:58 +02:00
Event::fire(new UserSettingsChanged());
2015-04-08 15:19:17 +02:00
}
// Check if the user is claiming a license (ie, additional invoices, white label, etc.)
2015-08-20 17:09:04 +02:00
if (isset($_SERVER['REQUEST_URI'])) {
$claimingLicense = Utils::startsWith($_SERVER['REQUEST_URI'], '/claim_license');
if (!$claimingLicense && Input::has('license_key') && Input::has('product_id')) {
$licenseKey = Input::get('license_key');
$productId = Input::get('product_id');
$data = trim(file_get_contents((Utils::isNinjaDev() ? SITE_URL : NINJA_APP_URL)."/claim_license?license_key={$licenseKey}&product_id={$productId}"));
if ($productId == PRODUCT_INVOICE_DESIGNS) {
if ($data = json_decode($data)) {
foreach ($data as $item) {
$design = new InvoiceDesign();
$design->id = $item->id;
$design->name = $item->name;
2015-09-20 23:05:02 +02:00
$design->pdfmake = $item->pdfmake;
2015-08-20 17:09:04 +02:00
$design->save();
}
2015-04-08 15:19:17 +02:00
2015-09-20 23:05:02 +02:00
Cache::forget('invoiceDesigns');
2015-08-20 17:09:04 +02:00
Session::flash('message', trans('texts.bought_designs'));
2015-04-08 15:19:17 +02:00
}
2015-08-20 17:09:04 +02:00
} elseif ($productId == PRODUCT_WHITE_LABEL) {
if ($data == 'valid') {
$account = Auth::user()->account;
$account->pro_plan_paid = NINJA_DATE;
$account->save();
2015-04-08 15:19:17 +02:00
2015-08-20 17:09:04 +02:00
Session::flash('message', trans('texts.bought_white_label'));
}
2015-04-08 15:19:17 +02:00
}
}
}
2015-09-20 23:05:02 +02:00
// Check data has been cached
2015-11-19 12:37:30 +01:00
$cachedTables = unserialize(CACHED_TABLES);
2015-09-20 23:05:02 +02:00
if (Input::has('clear_cache')) {
Session::flash('message', 'Cache cleared');
}
foreach ($cachedTables as $name => $class) {
if (Input::has('clear_cache') || !Cache::has($name)) {
if ($name == 'paymentTerms') {
$orderBy = 'num_days';
2015-10-01 22:02:22 +02:00
} elseif (in_array($name, ['currencies', 'industries', 'languages', 'countries'])) {
2015-09-20 23:05:02 +02:00
$orderBy = 'name';
} else {
$orderBy = 'id';
}
$tableData = $class::orderBy($orderBy)->get();
if (count($tableData)) {
Cache::forever($name, $tableData);
}
}
}
2015-08-20 17:09:04 +02:00
2015-09-25 11:57:40 +02:00
// Show message to IE 8 and before users
2015-08-03 10:02:35 +02:00
if (isset($_SERVER['HTTP_USER_AGENT']) && preg_match('/(?i)msie [2-8]/', $_SERVER['HTTP_USER_AGENT'])) {
2015-07-07 22:08:16 +02:00
Session::flash('error', trans('texts.old_browser'));
}
$response = $next($request);
//$response->headers->set('X-Frame-Options', 'DENY');
2015-07-07 22:08:16 +02:00
return $response;
2015-04-08 15:19:17 +02:00
}
2015-03-17 02:30:56 +01:00
}