1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-20 16:31:33 +02:00
invoiceninja/app/Http/Controllers/AccountController.php

1045 lines
44 KiB
PHP
Raw Normal View History

2016-01-03 23:02:13 +01:00
<?php namespace App\Http\Controllers;
2015-03-16 22:45:25 +01:00
2015-03-26 07:24:02 +01:00
use Auth;
2015-04-06 07:45:27 +02:00
use File;
use Image;
2015-03-26 07:24:02 +01:00
use Input;
use Redirect;
use Session;
use Utils;
2015-04-01 21:57:02 +02:00
use Validator;
2015-04-06 07:45:27 +02:00
use View;
2015-04-01 21:57:02 +02:00
use stdClass;
2015-04-08 15:19:17 +02:00
use Cache;
2015-04-16 19:12:56 +02:00
use Response;
2015-05-10 21:02:35 +02:00
use Request;
use App\Models\Affiliate;
use App\Models\License;
2016-02-25 19:34:23 +01:00
use App\Models\Invoice;
2015-04-05 21:15:37 +02:00
use App\Models\User;
2015-03-26 07:24:02 +01:00
use App\Models\Account;
2015-09-20 23:05:02 +02:00
use App\Models\Gateway;
2015-04-01 21:57:02 +02:00
use App\Models\InvoiceDesign;
2015-10-21 13:11:08 +02:00
use App\Models\TaxRate;
2016-01-07 20:39:51 +01:00
use App\Models\PaymentTerm;
use App\Ninja\Repositories\AccountRepository;
2015-11-01 19:21:11 +01:00
use App\Ninja\Repositories\ReferralRepository;
use App\Ninja\Mailers\UserMailer;
use App\Ninja\Mailers\ContactMailer;
2016-03-08 22:22:59 +01:00
use App\Events\UserSignedUp;
use App\Events\UserSettingsChanged;
2015-10-11 16:41:09 +02:00
use App\Services\AuthService;
2015-03-16 22:45:25 +01:00
2016-02-03 13:41:40 +01:00
use App\Http\Requests\UpdateAccountRequest;
2015-03-26 07:24:02 +01:00
class AccountController extends BaseController
2015-03-16 22:45:25 +01:00
{
protected $accountRepo;
protected $userMailer;
protected $contactMailer;
2015-11-01 19:21:11 +01:00
protected $referralRepository;
2015-03-16 22:45:25 +01:00
2015-11-18 18:16:23 +01:00
public function __construct(AccountRepository $accountRepo, UserMailer $userMailer, ContactMailer $contactMailer, ReferralRepository $referralRepository)
2015-03-16 22:45:25 +01:00
{
2016-03-02 14:36:42 +01:00
//parent::__construct();
2015-03-16 22:45:25 +01:00
$this->accountRepo = $accountRepo;
$this->userMailer = $userMailer;
$this->contactMailer = $contactMailer;
2015-11-01 19:21:11 +01:00
$this->referralRepository = $referralRepository;
2015-03-16 22:45:25 +01:00
}
public function demo()
{
$demoAccountId = Utils::getDemoAccountId();
if (!$demoAccountId) {
return Redirect::to('/');
}
$account = Account::find($demoAccountId);
$user = $account->users()->first();
Auth::login($user, true);
return Redirect::to('invoices/create');
}
public function getStarted()
{
$user = false;
$guestKey = Input::get('guest_key'); // local storage key to login until registered
$prevUserId = Session::pull(PREV_USER_ID); // last user id used to link to new account
2015-03-16 22:45:25 +01:00
if (Auth::check()) {
return Redirect::to('invoices/create');
}
if (!Utils::isNinja() && (Account::count() > 0 && !$prevUserId)) {
2015-06-16 21:35:35 +02:00
return Redirect::to('/login');
}
2016-01-03 20:10:20 +01:00
2015-07-07 22:08:16 +02:00
if ($guestKey && !$prevUserId) {
2015-03-16 22:45:25 +01:00
$user = User::where('password', '=', $guestKey)->first();
if ($user && $user->registered) {
return Redirect::to('/');
}
}
if (!$user) {
$account = $this->accountRepo->create();
$user = $account->users()->first();
Session::forget(RECENTLY_VIEWED);
2015-07-07 22:08:16 +02:00
if ($prevUserId) {
$users = $this->accountRepo->associateAccounts($user->id, $prevUserId);
Session::put(SESSION_USER_ACCOUNTS, $users);
}
2015-03-16 22:45:25 +01:00
}
Auth::login($user, true);
2016-03-08 22:22:59 +01:00
event(new UserSignedUp());
2016-01-03 20:10:20 +01:00
2015-09-29 16:16:19 +02:00
$redirectTo = Input::get('redirect_to') ?: 'invoices/create';
2016-01-03 20:10:20 +01:00
return Redirect::to($redirectTo)->with('sign_up', Input::get('sign_up'));
2015-03-16 22:45:25 +01:00
}
public function enableProPlan()
{
$invitation = $this->accountRepo->enableProPlan();
return $invitation->invitation_key;
}
public function setTrashVisible($entityType, $visible)
{
Session::put("show_trash:{$entityType}", $visible == 'true');
return RESULT_SUCCESS;
2015-03-16 22:45:25 +01:00
}
public function getSearchData()
{
$account = Auth::user()->account;
$data = $this->accountRepo->getSearchData($account);
2016-01-03 20:10:20 +01:00
2015-03-16 22:45:25 +01:00
return Response::json($data);
}
2015-10-14 16:15:39 +02:00
public function showSection($section = false)
2015-03-16 22:45:25 +01:00
{
2015-10-14 16:15:39 +02:00
if (!$section) {
2016-01-03 20:10:20 +01:00
return Redirect::to('/settings/'.ACCOUNT_COMPANY_DETAILS, 301);
2015-10-14 16:15:39 +02:00
}
2015-10-11 16:41:09 +02:00
2015-10-14 16:15:39 +02:00
if ($section == ACCOUNT_COMPANY_DETAILS) {
return self::showCompanyDetails();
} elseif ($section == ACCOUNT_LOCALIZATION) {
return self::showLocalization();
} elseif ($section == ACCOUNT_PAYMENTS) {
return self::showOnlinePayments();
2016-01-20 00:07:31 +01:00
} elseif ($section == ACCOUNT_BANKS) {
return self::showBankAccounts();
2015-10-22 20:48:12 +02:00
} elseif ($section == ACCOUNT_INVOICE_SETTINGS) {
return self::showInvoiceSettings();
2015-10-14 16:15:39 +02:00
} elseif ($section == ACCOUNT_IMPORT_EXPORT) {
return View::make('accounts.import_export', ['title' => trans('texts.import_export')]);
} elseif ($section == ACCOUNT_INVOICE_DESIGN || $section == ACCOUNT_CUSTOMIZE_DESIGN) {
return self::showInvoiceDesign($section);
2016-01-03 20:10:20 +01:00
} elseif ($section == ACCOUNT_CLIENT_PORTAL) {
2016-02-29 22:46:27 +01:00
return self::showClientPortal();
2015-10-14 16:15:39 +02:00
} elseif ($section === ACCOUNT_TEMPLATES_AND_REMINDERS) {
return self::showTemplates();
} elseif ($section === ACCOUNT_PRODUCTS) {
return self::showProducts();
2015-10-21 13:11:08 +02:00
} elseif ($section === ACCOUNT_TAX_RATES) {
return self::showTaxRates();
2016-01-07 20:39:51 +01:00
} elseif ($section === ACCOUNT_PAYMENT_TERMS) {
return self::showPaymentTerms();
2015-11-04 14:57:59 +01:00
} elseif ($section === ACCOUNT_SYSTEM_SETTINGS) {
return self::showSystemSettings();
2015-10-14 16:15:39 +02:00
} else {
2015-03-16 22:45:25 +01:00
$data = [
'account' => Account::with('users')->findOrFail(Auth::user()->account_id),
2015-10-14 16:15:39 +02:00
'title' => trans("texts.{$section}"),
2016-01-03 20:10:20 +01:00
'section' => $section,
2015-03-16 22:45:25 +01:00
];
2016-01-03 20:10:20 +01:00
2015-10-14 16:15:39 +02:00
return View::make("accounts.{$section}", $data);
}
}
2015-03-16 22:45:25 +01:00
2015-11-04 14:57:59 +01:00
private function showSystemSettings()
{
if (Utils::isNinjaProd()) {
return Redirect::to('/');
}
$data = [
'account' => Account::with('users')->findOrFail(Auth::user()->account_id),
'title' => trans("texts.system_settings"),
'section' => ACCOUNT_SYSTEM_SETTINGS,
];
return View::make("accounts.system_settings", $data);
}
2015-10-22 20:48:12 +02:00
private function showInvoiceSettings()
{
$account = Auth::user()->account;
$recurringHours = [];
2016-01-03 20:10:20 +01:00
for ($i = 0; $i<24; $i++) {
2015-10-22 20:48:12 +02:00
if ($account->military_time) {
$format = 'H:i';
} else {
$format = 'g:i a';
}
$recurringHours[$i] = date($format, strtotime("{$i}:00"));
}
$data = [
'account' => Account::with('users')->findOrFail(Auth::user()->account_id),
'title' => trans("texts.invoice_settings"),
'section' => ACCOUNT_INVOICE_SETTINGS,
2016-01-03 20:10:20 +01:00
'recurringHours' => $recurringHours,
2015-10-22 20:48:12 +02:00
];
2016-01-03 20:10:20 +01:00
2015-10-22 20:48:12 +02:00
return View::make("accounts.invoice_settings", $data);
}
2015-10-14 16:15:39 +02:00
private function showCompanyDetails()
{
2015-11-16 19:02:04 +01:00
// check that logo is less than the max file size
$account = Auth::user()->account;
2015-11-29 21:13:50 +01:00
if ($account->isLogoTooLarge()) {
2016-01-03 20:10:20 +01:00
Session::flash('warning', trans('texts.logo_too_large', ['size' => $account->getLogoSize().'KB']));
2015-11-16 19:02:04 +01:00
}
2015-10-14 16:15:39 +02:00
$data = [
'account' => Account::with('users')->findOrFail(Auth::user()->account_id),
'countries' => Cache::get('countries'),
'sizes' => Cache::get('sizes'),
'industries' => Cache::get('industries'),
'title' => trans('texts.company_details'),
];
return View::make('accounts.details', $data);
}
2015-03-16 22:45:25 +01:00
2016-03-16 00:08:00 +01:00
public function showUserDetails()
2015-10-14 16:15:39 +02:00
{
$oauthLoginUrls = [];
foreach (AuthService::$providers as $provider) {
2016-01-03 20:10:20 +01:00
$oauthLoginUrls[] = ['label' => $provider, 'url' => '/auth/'.strtolower($provider)];
2015-10-14 16:15:39 +02:00
}
2016-01-03 20:10:20 +01:00
2015-10-14 16:15:39 +02:00
$data = [
'account' => Account::with('users')->findOrFail(Auth::user()->account_id),
'title' => trans('texts.user_details'),
'user' => Auth::user(),
'oauthProviderName' => AuthService::getProviderName(Auth::user()->oauth_provider_id),
'oauthLoginUrls' => $oauthLoginUrls,
2015-11-01 19:21:11 +01:00
'referralCounts' => $this->referralRepository->getCounts(Auth::user()->id),
2015-10-14 16:15:39 +02:00
];
2015-03-16 22:45:25 +01:00
2015-10-14 16:15:39 +02:00
return View::make('accounts.user_details', $data);
}
2015-07-21 20:51:56 +02:00
2015-10-14 16:15:39 +02:00
private function showLocalization()
{
$data = [
'account' => Account::with('users')->findOrFail(Auth::user()->account_id),
'timezones' => Cache::get('timezones'),
'dateFormats' => Cache::get('dateFormats'),
'datetimeFormats' => Cache::get('datetimeFormats'),
'currencies' => Cache::get('currencies'),
'languages' => Cache::get('languages'),
'title' => trans('texts.localization'),
];
return View::make('accounts.localization', $data);
}
2016-01-20 00:07:31 +01:00
private function showBankAccounts()
{
$account = Auth::user()->account;
$account->load('bank_accounts');
$count = count($account->bank_accounts);
if ($count == 0) {
return Redirect::to('bank_accounts/create');
} else {
return View::make('accounts.banks', [
'title' => trans('texts.bank_accounts')
]);
}
}
2015-10-14 16:15:39 +02:00
private function showOnlinePayments()
{
$account = Auth::user()->account;
$account->load('account_gateways');
$count = count($account->account_gateways);
2016-01-03 20:10:20 +01:00
2015-11-29 21:13:50 +01:00
if ($accountGateway = $account->getGatewayConfig(GATEWAY_STRIPE)) {
2016-01-03 20:10:20 +01:00
if (! $accountGateway->getPublishableStripeKey()) {
2015-11-29 21:13:50 +01:00
Session::flash('warning', trans('texts.missing_publishable_key'));
}
}
2015-10-14 16:15:39 +02:00
if ($count == 0) {
return Redirect::to('gateways/create');
} else {
return View::make('accounts.payments', [
'showAdd' => $count < count(Gateway::$paymentTypes),
'title' => trans('texts.online_payments')
]);
}
}
private function showProducts()
{
2015-10-21 13:11:08 +02:00
$columns = ['product', 'description', 'unit_cost'];
if (Auth::user()->account->invoice_item_taxes) {
$columns[] = 'tax_rate';
}
$columns[] = 'action';
2015-10-14 16:15:39 +02:00
$data = [
'account' => Auth::user()->account,
'title' => trans('texts.product_library'),
2015-10-21 13:11:08 +02:00
'columns' => Utils::trans($columns),
2015-10-14 16:15:39 +02:00
];
return View::make('accounts.products', $data);
}
2015-10-21 13:11:08 +02:00
private function showTaxRates()
{
$data = [
'account' => Auth::user()->account,
'title' => trans('texts.tax_rates'),
'taxRates' => TaxRate::scope()->get(['id', 'name', 'rate']),
];
return View::make('accounts.tax_rates', $data);
}
2016-01-07 20:39:51 +01:00
private function showPaymentTerms()
{
$data = [
'account' => Auth::user()->account,
'title' => trans('texts.payment_terms'),
'taxRates' => PaymentTerm::scope()->get(['id', 'name', 'num_days']),
];
return View::make('accounts.payment_terms', $data);
}
2016-01-19 14:01:19 +01:00
2015-10-14 16:15:39 +02:00
private function showInvoiceDesign($section)
{
$account = Auth::user()->account->load('country');
$invoice = new stdClass();
$client = new stdClass();
$contact = new stdClass();
$invoiceItem = new stdClass();
2016-03-23 23:40:42 +01:00
$document = new stdClass();
2015-10-14 16:15:39 +02:00
$client->name = 'Sample Client';
$client->address1 = trans('texts.address1');
$client->city = trans('texts.city');
$client->state = trans('texts.state');
$client->postal_code = trans('texts.postal_code');
$client->work_phone = trans('texts.work_phone');
$client->work_email = trans('texts.work_id');
2016-01-19 14:01:19 +01:00
2015-10-23 13:55:18 +02:00
$invoice->invoice_number = '0000';
2015-10-14 16:15:39 +02:00
$invoice->invoice_date = Utils::fromSqlDate(date('Y-m-d'));
$invoice->account = json_decode($account->toJson());
$invoice->amount = $invoice->balance = 100;
$invoice->terms = trim($account->invoice_terms);
$invoice->invoice_footer = trim($account->invoice_footer);
$contact->email = 'contact@gmail.com';
$client->contacts = [$contact];
$invoiceItem->cost = 100;
$invoiceItem->qty = 1;
$invoiceItem->notes = 'Notes';
$invoiceItem->product_key = 'Item';
2016-03-23 23:40:42 +01:00
$document->base64 = 'data:image/jpeg;base64,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
2015-10-14 16:15:39 +02:00
$invoice->client = $client;
$invoice->invoice_items = [$invoiceItem];
2016-03-23 23:40:42 +01:00
$invoice->documents = $account->isPro()?[$document,$document,$document,$document]:[];
2016-01-19 14:01:19 +01:00
2015-10-14 16:15:39 +02:00
$data['account'] = $account;
$data['invoice'] = $invoice;
$data['invoiceLabels'] = json_decode($account->invoice_labels) ?: [];
$data['title'] = trans('texts.invoice_design');
$data['invoiceDesigns'] = InvoiceDesign::getDesigns();
2016-01-07 08:08:30 +01:00
$data['invoiceFonts'] = Cache::get('fonts');
2015-10-14 16:15:39 +02:00
$data['section'] = $section;
2016-01-19 14:01:19 +01:00
2015-10-14 16:15:39 +02:00
$design = false;
foreach ($data['invoiceDesigns'] as $item) {
if ($item->id == $account->invoice_design_id) {
$design = $item->javascript;
break;
2015-03-16 22:45:25 +01:00
}
2015-10-14 16:15:39 +02:00
}
2015-03-16 22:45:25 +01:00
2015-10-14 16:15:39 +02:00
if ($section == ACCOUNT_CUSTOMIZE_DESIGN) {
$data['customDesign'] = ($account->custom_design && !$design) ? $account->custom_design : $design;
2016-02-25 19:34:23 +01:00
// sample invoice to help determine variables
$invoice = Invoice::scope()
->with('client', 'account')
->where('is_quote', '=', false)
->where('is_recurring', '=', false)
->first();
if ($invoice) {
$invoice->hidePrivateFields();
unset($invoice->account);
unset($invoice->invoice_items);
unset($invoice->client->contacts);
$data['sampleInvoice'] = $invoice;
}
2015-10-14 16:15:39 +02:00
}
2016-01-03 20:10:20 +01:00
2015-10-14 16:15:39 +02:00
return View::make("accounts.{$section}", $data);
}
2015-03-16 22:45:25 +01:00
2016-02-29 22:46:27 +01:00
private function showClientPortal()
{
$account = Auth::user()->account->load('country');
$css = $account->client_view_css ? $account->client_view_css : '';
2016-01-03 20:10:20 +01:00
if (Utils::isNinja() && $css) {
// Unescape the CSS for display purposes
$css = str_replace(
array('\3C ', '\3E ', '\26 '),
array('<', '>', '&'),
$css
);
}
2016-01-03 20:10:20 +01:00
$data = [
'client_view_css' => $css,
2016-02-29 22:46:27 +01:00
'enable_portal_password' => $account->enable_portal_password,
'send_portal_password' => $account->send_portal_password,
2016-01-03 20:10:20 +01:00
'title' => trans("texts.client_portal"),
'section' => ACCOUNT_CLIENT_PORTAL,
'account' => $account,
];
2016-01-03 20:10:20 +01:00
return View::make("accounts.client_portal", $data);
}
2015-10-14 16:15:39 +02:00
private function showTemplates()
{
$account = Auth::user()->account->load('country');
$data['account'] = $account;
$data['templates'] = [];
$data['defaultTemplates'] = [];
foreach ([ENTITY_INVOICE, ENTITY_QUOTE, ENTITY_PAYMENT, REMINDER1, REMINDER2, REMINDER3] as $type) {
$data['templates'][$type] = [
'subject' => $account->getEmailSubject($type),
'template' => $account->getEmailTemplate($type),
];
$data['defaultTemplates'][$type] = [
'subject' => $account->getDefaultEmailSubject($type),
'template' => $account->getDefaultEmailTemplate($type),
];
2015-03-16 22:45:25 +01:00
}
2015-10-14 16:15:39 +02:00
$data['emailFooter'] = $account->getEmailFooter();
$data['title'] = trans('texts.email_templates');
2016-01-03 20:10:20 +01:00
2015-10-14 16:15:39 +02:00
return View::make('accounts.templates_and_reminders', $data);
2015-03-16 22:45:25 +01:00
}
2015-10-14 16:15:39 +02:00
public function doSection($section = ACCOUNT_COMPANY_DETAILS)
2015-03-16 22:45:25 +01:00
{
2015-10-14 16:15:39 +02:00
if ($section === ACCOUNT_COMPANY_DETAILS) {
2015-03-16 22:45:25 +01:00
return AccountController::saveDetails();
2015-10-14 16:15:39 +02:00
} elseif ($section === ACCOUNT_LOCALIZATION) {
return AccountController::saveLocalization();
} elseif ($section === ACCOUNT_NOTIFICATIONS) {
2015-03-16 22:45:25 +01:00
return AccountController::saveNotifications();
2015-10-14 16:15:39 +02:00
} elseif ($section === ACCOUNT_EXPORT) {
2015-03-16 22:45:25 +01:00
return AccountController::export();
2015-10-14 16:15:39 +02:00
} elseif ($section === ACCOUNT_INVOICE_SETTINGS) {
return AccountController::saveInvoiceSettings();
2015-12-15 21:25:12 +01:00
} elseif ($section === ACCOUNT_EMAIL_SETTINGS) {
return AccountController::saveEmailSettings();
2015-10-14 16:15:39 +02:00
} elseif ($section === ACCOUNT_INVOICE_DESIGN) {
return AccountController::saveInvoiceDesign();
} elseif ($section === ACCOUNT_CUSTOMIZE_DESIGN) {
return AccountController::saveCustomizeDesign();
2016-01-03 20:10:20 +01:00
} elseif ($section === ACCOUNT_CLIENT_PORTAL) {
return AccountController::saveClientPortal();
2015-10-14 16:15:39 +02:00
} elseif ($section === ACCOUNT_TEMPLATES_AND_REMINDERS) {
return AccountController::saveEmailTemplates();
} elseif ($section === ACCOUNT_PRODUCTS) {
2015-03-16 22:45:25 +01:00
return AccountController::saveProducts();
2015-10-21 13:11:08 +02:00
} elseif ($section === ACCOUNT_TAX_RATES) {
return AccountController::saveTaxRates();
2016-01-07 20:39:51 +01:00
} elseif ($section === ACCOUNT_PAYMENT_TERMS) {
return AccountController::savePaymetTerms();
2015-03-16 22:45:25 +01:00
}
}
2016-01-03 20:10:20 +01:00
private function saveCustomizeDesign()
{
2015-07-21 20:51:56 +02:00
if (Auth::user()->account->isPro()) {
$account = Auth::user()->account;
$account->custom_design = Input::get('custom_design');
$account->invoice_design_id = CUSTOM_DESIGN;
$account->save();
2016-01-03 20:10:20 +01:00
2015-07-21 20:51:56 +02:00
Session::flash('message', trans('texts.updated_settings'));
}
2016-01-03 20:10:20 +01:00
return Redirect::to('settings/'.ACCOUNT_CUSTOMIZE_DESIGN);
2015-07-21 20:51:56 +02:00
}
2016-01-03 20:10:20 +01:00
private function saveClientPortal()
{
// Only allowed for pro Invoice Ninja users or white labeled self-hosted users
if ((Utils::isNinja() && Auth::user()->account->isPro()) || Auth::user()->account->isWhiteLabel()) {
$input_css = Input::get('client_view_css');
2016-01-03 20:10:20 +01:00
if (Utils::isNinja()) {
// Allow referencing the body element
$input_css = preg_replace('/(?<![a-z0-9\-\_\#\.])body(?![a-z0-9\-\_])/i', '.body', $input_css);
//
// Inspired by http://stackoverflow.com/a/5209050/1721527, dleavitt <https://stackoverflow.com/users/362110/dleavitt>
//
// Create a new configuration object
$config = \HTMLPurifier_Config::createDefault();
$config->set('Filter.ExtractStyleBlocks', true);
$config->set('CSS.AllowImportant', true);
$config->set('CSS.AllowTricky', true);
$config->set('CSS.Trusted', true);
// Create a new purifier instance
$purifier = new \HTMLPurifier($config);
2016-01-03 20:10:20 +01:00
// Wrap our CSS in style tags and pass to purifier.
// we're not actually interested in the html response though
$html = $purifier->purify('<style>'.$input_css.'</style>');
// The "style" blocks are stored seperately
$output_css = $purifier->context->get('StyleBlocks');
// Get the first style block
2016-01-03 20:10:20 +01:00
$sanitized_css = count($output_css) ? $output_css[0] : '';
} else {
$sanitized_css = $input_css;
}
2016-01-03 20:10:20 +01:00
$account = Auth::user()->account;
$account->client_view_css = $sanitized_css;
2016-03-04 03:57:15 +01:00
$account->enable_client_portal = !!Input::get('enable_client_portal');
2016-03-04 03:57:15 +01:00
$account->enable_portal_password = !!Input::get('enable_portal_password');
$account->send_portal_password = !!Input::get('send_portal_password');
$account->save();
2016-01-03 20:10:20 +01:00
Session::flash('message', trans('texts.updated_settings'));
}
2016-01-03 20:10:20 +01:00
return Redirect::to('settings/'.ACCOUNT_CLIENT_PORTAL);
}
2015-03-16 22:45:25 +01:00
private function saveEmailTemplates()
{
if (Auth::user()->account->isPro()) {
$account = Auth::user()->account;
2015-09-17 21:01:06 +02:00
foreach ([ENTITY_INVOICE, ENTITY_QUOTE, ENTITY_PAYMENT, REMINDER1, REMINDER2, REMINDER3] as $type) {
$subjectField = "email_subject_{$type}";
2015-09-20 23:05:02 +02:00
$subject = Input::get($subjectField, $account->getEmailSubject($type));
$account->$subjectField = ($subject == $account->getDefaultEmailSubject($type) ? null : $subject);
2015-09-17 21:01:06 +02:00
$bodyField = "email_template_{$type}";
2015-09-20 23:05:02 +02:00
$body = Input::get($bodyField, $account->getEmailTemplate($type));
$account->$bodyField = ($body == $account->getDefaultEmailTemplate($type) ? null : $body);
2015-09-17 21:01:06 +02:00
}
foreach ([REMINDER1, REMINDER2, REMINDER3] as $type) {
$enableField = "enable_{$type}";
$account->$enableField = Input::get($enableField) ? true : false;
2015-09-20 23:05:02 +02:00
if ($account->$enableField) {
$account->{"num_days_{$type}"} = Input::get("num_days_{$type}");
$account->{"field_{$type}"} = Input::get("field_{$type}");
$account->{"direction_{$type}"} = Input::get("field_{$type}") == REMINDER_FIELD_INVOICE_DATE ? REMINDER_DIRECTION_AFTER : Input::get("direction_{$type}");
2015-09-20 23:05:02 +02:00
}
2015-09-17 21:01:06 +02:00
}
2015-03-16 22:45:25 +01:00
$account->save();
Session::flash('message', trans('texts.updated_settings'));
}
2016-01-03 20:10:20 +01:00
return Redirect::to('settings/'.ACCOUNT_TEMPLATES_AND_REMINDERS);
2015-03-16 22:45:25 +01:00
}
2015-10-21 13:11:08 +02:00
private function saveTaxRates()
{
$account = Auth::user()->account;
$account->invoice_taxes = Input::get('invoice_taxes') ? true : false;
$account->invoice_item_taxes = Input::get('invoice_item_taxes') ? true : false;
$account->show_item_taxes = Input::get('show_item_taxes') ? true : false;
$account->default_tax_rate_id = Input::get('default_tax_rate_id');
$account->save();
Session::flash('message', trans('texts.updated_settings'));
2016-01-03 20:10:20 +01:00
return Redirect::to('settings/'.ACCOUNT_TAX_RATES);
2015-10-21 13:11:08 +02:00
}
2015-03-16 22:45:25 +01:00
private function saveProducts()
{
$account = Auth::user()->account;
$account->fill_products = Input::get('fill_products') ? true : false;
$account->update_products = Input::get('update_products') ? true : false;
$account->save();
Session::flash('message', trans('texts.updated_settings'));
2016-01-03 20:10:20 +01:00
return Redirect::to('settings/'.ACCOUNT_PRODUCTS);
2015-03-16 22:45:25 +01:00
}
2015-12-15 21:25:12 +01:00
private function saveEmailSettings()
2015-03-16 22:45:25 +01:00
{
if (Auth::user()->account->isPro()) {
2015-12-15 21:25:12 +01:00
$rules = [];
$user = Auth::user();
$iframeURL = preg_replace('/[^a-zA-Z0-9_\-\:\/\.]/', '', substr(strtolower(Input::get('iframe_url')), 0, MAX_IFRAME_URL_LENGTH));
2015-10-13 09:11:44 +02:00
$iframeURL = rtrim($iframeURL, "/");
2016-01-03 20:10:20 +01:00
$subdomain = preg_replace('/[^a-zA-Z0-9_\-\.]/', '', substr(strtolower(Input::get('subdomain')), 0, MAX_SUBDOMAIN_LENGTH));
2016-02-04 15:12:22 +01:00
if ($iframeURL) {
$subdomain = null;
}
if ($subdomain) {
2016-02-04 15:12:22 +01:00
$exclude = ['www', 'app', 'mail', 'admin', 'blog', 'user', 'contact', 'payment', 'payments', 'billing', 'invoice', 'business', 'owner', 'info', 'ninja'];
$rules['subdomain'] = "unique:accounts,subdomain,{$user->account_id},id|not_in:" . implode(',', $exclude);
2015-03-16 22:45:25 +01:00
}
$validator = Validator::make(Input::all(), $rules);
2015-03-16 22:45:25 +01:00
if ($validator->fails()) {
2016-01-03 20:10:20 +01:00
return Redirect::to('settings/'.ACCOUNT_EMAIL_SETTINGS)
->withErrors($validator)
->withInput();
2015-03-16 22:45:25 +01:00
} else {
$account = Auth::user()->account;
$account->subdomain = $subdomain;
$account->iframe_url = $iframeURL;
2015-12-15 21:25:12 +01:00
$account->pdf_email_attachment = Input::get('pdf_email_attachment') ? true : false;
$account->email_design_id = Input::get('email_design_id');
if (Utils::isNinja()) {
$account->enable_email_markup = Input::get('enable_email_markup') ? true : false;
}
2016-01-03 20:10:20 +01:00
2015-12-15 21:25:12 +01:00
$account->save();
Session::flash('message', trans('texts.updated_settings'));
}
}
2016-01-03 20:10:20 +01:00
return Redirect::to('settings/'.ACCOUNT_EMAIL_SETTINGS);
2015-12-15 21:25:12 +01:00
}
private function saveInvoiceSettings()
{
if (Auth::user()->account->isPro()) {
$rules = [
'invoice_number_pattern' => 'has_counter',
'quote_number_pattern' => 'has_counter',
];
2016-01-03 20:10:20 +01:00
2015-12-15 21:25:12 +01:00
$validator = Validator::make(Input::all(), $rules);
if ($validator->fails()) {
2016-01-03 20:10:20 +01:00
return Redirect::to('settings/'.ACCOUNT_INVOICE_SETTINGS)
2015-12-15 21:25:12 +01:00
->withErrors($validator)
->withInput();
} else {
$account = Auth::user()->account;
$account->custom_label1 = trim(Input::get('custom_label1'));
$account->custom_value1 = trim(Input::get('custom_value1'));
$account->custom_label2 = trim(Input::get('custom_label2'));
$account->custom_value2 = trim(Input::get('custom_value2'));
$account->custom_client_label1 = trim(Input::get('custom_client_label1'));
$account->custom_client_label2 = trim(Input::get('custom_client_label2'));
$account->custom_invoice_label1 = trim(Input::get('custom_invoice_label1'));
$account->custom_invoice_label2 = trim(Input::get('custom_invoice_label2'));
$account->custom_invoice_taxes1 = Input::get('custom_invoice_taxes1') ? true : false;
$account->custom_invoice_taxes2 = Input::get('custom_invoice_taxes2') ? true : false;
2015-10-11 16:41:09 +02:00
$account->custom_invoice_text_label1 = trim(Input::get('custom_invoice_text_label1'));
$account->custom_invoice_text_label2 = trim(Input::get('custom_invoice_text_label2'));
2016-02-28 12:59:52 +01:00
$account->custom_invoice_item_label1 = trim(Input::get('custom_invoice_item_label1'));
$account->custom_invoice_item_label2 = trim(Input::get('custom_invoice_item_label2'));
$account->invoice_number_counter = Input::get('invoice_number_counter');
$account->quote_number_prefix = Input::get('quote_number_prefix');
$account->share_counter = Input::get('share_counter') ? true : false;
2015-10-29 15:42:05 +01:00
$account->invoice_terms = Input::get('invoice_terms');
$account->invoice_footer = Input::get('invoice_footer');
$account->quote_terms = Input::get('quote_terms');
$account->auto_convert_quote = Input::get('auto_convert_quote');
$account->recurring_invoice_number_prefix = Input::get('recurring_invoice_number_prefix');
2015-10-22 20:48:12 +02:00
if (Input::has('recurring_hour')) {
$account->recurring_hour = Input::get('recurring_hour');
}
if (!$account->share_counter) {
$account->quote_number_counter = Input::get('quote_number_counter');
}
2015-10-22 20:48:12 +02:00
if (Input::get('invoice_number_type') == 'prefix') {
$account->invoice_number_prefix = trim(Input::get('invoice_number_prefix'));
$account->invoice_number_pattern = null;
} else {
$account->invoice_number_pattern = trim(Input::get('invoice_number_pattern'));
$account->invoice_number_prefix = null;
}
2016-01-03 20:10:20 +01:00
2015-10-22 20:48:12 +02:00
if (Input::get('quote_number_type') == 'prefix') {
$account->quote_number_prefix = trim(Input::get('quote_number_prefix'));
$account->quote_number_pattern = null;
} else {
$account->quote_number_pattern = trim(Input::get('quote_number_pattern'));
$account->quote_number_prefix = null;
}
2016-01-03 20:10:20 +01:00
2016-01-31 16:39:31 +01:00
if (!$account->share_counter
&& $account->invoice_number_prefix == $account->quote_number_prefix
&& $account->invoice_number_pattern == $account->quote_number_pattern) {
Session::flash('error', trans('texts.invalid_counter'));
2016-01-03 20:10:20 +01:00
return Redirect::to('settings/'.ACCOUNT_INVOICE_SETTINGS)->withInput();
} else {
$account->save();
Session::flash('message', trans('texts.updated_settings'));
}
2015-03-16 22:45:25 +01:00
}
}
2016-01-03 20:10:20 +01:00
return Redirect::to('settings/'.ACCOUNT_INVOICE_SETTINGS);
2015-03-16 22:45:25 +01:00
}
private function saveInvoiceDesign()
{
if (Auth::user()->account->isPro()) {
$account = Auth::user()->account;
$account->hide_quantity = Input::get('hide_quantity') ? true : false;
$account->hide_paid_to_date = Input::get('hide_paid_to_date') ? true : false;
$account->all_pages_header = Input::get('all_pages_header') ? true : false;
$account->all_pages_footer = Input::get('all_pages_footer') ? true : false;
2016-03-23 23:40:42 +01:00
$account->invoice_embed_documents = Input::get('invoice_embed_documents') ? true : false;
$account->header_font_id = Input::get('header_font_id');
$account->body_font_id = Input::get('body_font_id');
2015-03-16 22:45:25 +01:00
$account->primary_color = Input::get('primary_color');
$account->secondary_color = Input::get('secondary_color');
2015-09-07 11:07:55 +02:00
$account->invoice_design_id = Input::get('invoice_design_id');
2016-01-19 14:01:19 +01:00
2015-05-22 09:22:24 +02:00
if (Input::has('font_size')) {
$account->font_size = intval(Input::get('font_size'));
}
2015-09-07 11:07:55 +02:00
$labels = [];
2016-03-18 13:34:46 +01:00
foreach (['item', 'description', 'unit_cost', 'quantity', 'line_total', 'terms', 'balance_due', 'partial_due'] as $field) {
2015-11-21 22:10:26 +01:00
$labels[$field] = Input::get("labels_{$field}");
}
$account->invoice_labels = json_encode($labels);
2015-03-16 22:45:25 +01:00
$account->save();
Session::flash('message', trans('texts.updated_settings'));
}
2016-01-03 20:10:20 +01:00
return Redirect::to('settings/'.ACCOUNT_INVOICE_DESIGN);
2015-03-16 22:45:25 +01:00
}
private function saveNotifications()
{
$user = Auth::user();
$user->notify_sent = Input::get('notify_sent');
$user->notify_viewed = Input::get('notify_viewed');
$user->notify_paid = Input::get('notify_paid');
$user->notify_approved = Input::get('notify_approved');
2015-03-16 22:45:25 +01:00
$user->save();
Session::flash('message', trans('texts.updated_settings'));
2016-01-03 20:10:20 +01:00
return Redirect::to('settings/'.ACCOUNT_NOTIFICATIONS);
2015-03-16 22:45:25 +01:00
}
2016-02-03 13:41:40 +01:00
public function updateDetails(UpdateAccountRequest $request)
2015-03-16 22:45:25 +01:00
{
2016-02-03 13:41:40 +01:00
$account = Auth::user()->account;
$this->accountRepo->save($request->input(), $account);
/* Logo image file */
if ($file = Input::file('logo')) {
$path = Input::file('logo')->getRealPath();
File::delete('logo/'.$account->account_key.'.jpg');
File::delete('logo/'.$account->account_key.'.png');
$mimeType = $file->getMimeType();
if ($mimeType == 'image/jpeg') {
$path = 'logo/'.$account->account_key.'.jpg';
$file->move('logo/', $account->account_key.'.jpg');
} elseif ($mimeType == 'image/png') {
$path = 'logo/'.$account->account_key.'.png';
$file->move('logo/', $account->account_key.'.png');
} else {
if (extension_loaded('fileinfo')) {
$image = Image::make($path);
$image->resize(200, 120, function ($constraint) {
$constraint->aspectRatio();
});
2016-01-03 20:10:20 +01:00
$path = 'logo/'.$account->account_key.'.jpg';
2016-02-03 13:41:40 +01:00
Image::canvas($image->width(), $image->height(), '#FFFFFF')
->insert($image)->save($path);
2015-03-16 22:45:25 +01:00
} else {
2016-02-03 13:41:40 +01:00
Session::flash('warning', 'Warning: To support gifs the fileinfo PHP extension needs to be enabled.');
2015-03-16 22:45:25 +01:00
}
2016-02-03 13:41:40 +01:00
}
2015-11-03 12:20:49 +01:00
2016-02-03 13:41:40 +01:00
// make sure image isn't interlaced
if (extension_loaded('fileinfo')) {
$img = Image::make($path);
$img->interlace(false);
$img->save();
2015-03-16 22:45:25 +01:00
}
2016-02-03 13:41:40 +01:00
}
2015-03-16 22:45:25 +01:00
2016-02-03 13:41:40 +01:00
event(new UserSettingsChanged());
2015-03-16 22:45:25 +01:00
2016-02-03 13:41:40 +01:00
Session::flash('message', trans('texts.updated_settings'));
2016-01-03 20:10:20 +01:00
2016-02-03 13:41:40 +01:00
return Redirect::to('settings/'.ACCOUNT_COMPANY_DETAILS);
2015-03-16 22:45:25 +01:00
}
2016-03-16 00:08:00 +01:00
public function saveUserDetails()
2015-10-14 16:15:39 +02:00
{
$user = Auth::user();
$rules = ['email' => 'email|required|unique:users,email,'.$user->id.',id'];
$validator = Validator::make(Input::all(), $rules);
if ($validator->fails()) {
2016-01-03 20:10:20 +01:00
return Redirect::to('settings/'.ACCOUNT_USER_DETAILS)
2015-10-14 16:15:39 +02:00
->withErrors($validator)
->withInput();
} else {
$user->first_name = trim(Input::get('first_name'));
$user->last_name = trim(Input::get('last_name'));
$user->username = trim(Input::get('email'));
$user->email = trim(strtolower(Input::get('email')));
$user->phone = trim(Input::get('phone'));
if (Utils::isNinja()) {
if (Input::get('referral_code') && !$user->referral_code) {
$user->referral_code = $this->accountRepo->getReferralCode();
}
}
if (Utils::isNinjaDev()) {
$user->dark_mode = Input::get('dark_mode') ? true : false;
}
$user->save();
2015-11-16 19:02:04 +01:00
event(new UserSettingsChanged());
2015-10-14 16:15:39 +02:00
Session::flash('message', trans('texts.updated_settings'));
2016-01-03 20:10:20 +01:00
return Redirect::to('settings/'.ACCOUNT_USER_DETAILS);
2015-10-14 16:15:39 +02:00
}
}
private function saveLocalization()
{
$account = Auth::user()->account;
$account->timezone_id = Input::get('timezone_id') ? Input::get('timezone_id') : null;
$account->date_format_id = Input::get('date_format_id') ? Input::get('date_format_id') : null;
$account->datetime_format_id = Input::get('datetime_format_id') ? Input::get('datetime_format_id') : null;
$account->currency_id = Input::get('currency_id') ? Input::get('currency_id') : 1; // US Dollar
$account->language_id = Input::get('language_id') ? Input::get('language_id') : 1; // English
$account->military_time = Input::get('military_time') ? true : false;
$account->show_currency_code = Input::get('show_currency_code') ? true : false;
2015-10-14 16:15:39 +02:00
$account->save();
2015-11-16 19:02:04 +01:00
event(new UserSettingsChanged());
2015-10-14 16:15:39 +02:00
Session::flash('message', trans('texts.updated_settings'));
2016-01-03 20:10:20 +01:00
return Redirect::to('settings/'.ACCOUNT_LOCALIZATION);
2015-10-14 16:15:39 +02:00
}
2015-03-16 22:45:25 +01:00
public function removeLogo()
{
File::delete('logo/'.Auth::user()->account->account_key.'.jpg');
2015-07-26 22:05:38 +02:00
File::delete('logo/'.Auth::user()->account->account_key.'.png');
2015-03-16 22:45:25 +01:00
Session::flash('message', trans('texts.removed_logo'));
2016-01-03 20:10:20 +01:00
return Redirect::to('settings/'.ACCOUNT_COMPANY_DETAILS);
2015-03-16 22:45:25 +01:00
}
public function checkEmail()
{
$email = User::withTrashed()->where('email', '=', Input::get('email'))->where('id', '<>', Auth::user()->id)->first();
if ($email) {
return "taken";
} else {
return "available";
}
}
public function submitSignup()
{
$rules = array(
'new_first_name' => 'required',
'new_last_name' => 'required',
'new_password' => 'required|min:6',
'new_email' => 'email|required|unique:users,email,'.Auth::user()->id.',id',
);
$validator = Validator::make(Input::all(), $rules);
if ($validator->fails()) {
return '';
}
$user = Auth::user();
$user->first_name = trim(Input::get('new_first_name'));
$user->last_name = trim(Input::get('new_last_name'));
$user->email = trim(strtolower(Input::get('new_email')));
$user->username = $user->email;
2015-04-13 17:05:34 +02:00
$user->password = bcrypt(trim(Input::get('new_password')));
2015-03-16 22:45:25 +01:00
$user->registered = true;
2015-10-11 16:41:09 +02:00
$user->save();
2015-03-16 22:45:25 +01:00
$user->account->startTrial();
2015-03-16 22:45:25 +01:00
if (Input::get('go_pro') == 'true') {
Session::set(REQUESTED_PRO_PLAN, true);
}
2016-01-03 20:10:20 +01:00
2015-03-16 22:45:25 +01:00
return "{$user->first_name} {$user->last_name}";
}
public function doRegister()
{
$affiliate = Affiliate::where('affiliate_key', '=', SELF_HOST_AFFILIATE_KEY)->first();
2015-06-12 10:39:53 +02:00
$email = trim(Input::get('email'));
2016-01-03 20:10:20 +01:00
2015-09-25 11:57:40 +02:00
if (!$email || $email == TEST_USERNAME) {
return RESULT_FAILURE;
2015-06-12 10:39:53 +02:00
}
2015-03-16 22:45:25 +01:00
$license = new License();
$license->first_name = Input::get('first_name');
$license->last_name = Input::get('last_name');
2015-06-12 10:39:53 +02:00
$license->email = $email;
2015-03-16 22:45:25 +01:00
$license->transaction_reference = Request::getClientIp();
$license->license_key = Utils::generateLicense();
$license->affiliate_id = $affiliate->id;
$license->product_id = PRODUCT_SELF_HOST;
$license->is_claimed = 1;
$license->save();
2015-09-25 11:57:40 +02:00
return RESULT_SUCCESS;
2015-03-16 22:45:25 +01:00
}
public function cancelAccount()
{
if ($reason = trim(Input::get('reason'))) {
$email = Auth::user()->email;
$name = Auth::user()->getDisplayName();
$data = [
'text' => $reason,
];
2016-02-17 16:50:01 +01:00
$subject = 'Invoice Ninja - Canceled Account';
if (Auth::user()->isPaidPro()) {
$subject .= ' [PRO]';
}
$this->userMailer->sendTo(CONTACT_EMAIL, $email, $name, $subject, 'contact', $data);
2015-03-16 22:45:25 +01:00
}
2015-10-18 09:30:28 +02:00
$user = Auth::user();
2015-03-16 22:45:25 +01:00
$account = Auth::user()->account;
2015-10-18 09:30:28 +02:00
\Log::info("Canceled Account: {$account->name} - {$user->email}");
2015-07-07 22:08:16 +02:00
$this->accountRepo->unlinkAccount($account);
2015-03-16 22:45:25 +01:00
$account->forceDelete();
2015-03-29 14:37:42 +02:00
Auth::logout();
2015-06-16 21:35:35 +02:00
Session::flush();
2015-03-16 22:45:25 +01:00
return Redirect::to('/')->with('clearGuestKey', true);
}
2015-04-13 14:49:40 +02:00
public function resendConfirmation()
{
$user = Auth::user();
$this->userMailer->sendConfirmation($user);
2016-01-03 20:10:20 +01:00
return Redirect::to('/settings/'.ACCOUNT_USER_DETAILS)->with('message', trans('texts.confirmation_resent'));
2015-10-14 16:15:39 +02:00
}
public function startTrial()
{
$user = Auth::user();
if ($user->isEligibleForTrial()) {
$user->account->startTrial();
}
return Redirect::back()->with('message', trans('texts.trial_success'));
}
2015-10-14 16:15:39 +02:00
public function redirectLegacy($section, $subSection = false)
{
if ($section === 'details') {
$section = ACCOUNT_COMPANY_DETAILS;
} elseif ($section === 'payments') {
$section = ACCOUNT_PAYMENTS;
} elseif ($section === 'advanced_settings') {
$section = $subSection;
if ($section === 'token_management') {
$section = ACCOUNT_API_TOKENS;
}
}
if (!in_array($section, array_merge(Account::$basicSettings, Account::$advancedSettings))) {
$section = ACCOUNT_COMPANY_DETAILS;
}
return Redirect::to("/settings/$section/", 301);
2015-04-13 14:49:40 +02:00
}
2015-03-16 22:45:25 +01:00
}