mirror of
				https://github.com/invoiceninja/invoiceninja.git
				synced 2025-10-31 08:57:34 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			175 lines
		
	
	
		
			4.0 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			175 lines
		
	
	
		
			4.0 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| 
 | |
| namespace App\Http\Controllers;
 | |
| 
 | |
| use App\Libraries\Utils;
 | |
| use App\Models\Account;
 | |
| use App\Ninja\Mailers\Mailer;
 | |
| use Auth;
 | |
| use Mail;
 | |
| use Redirect;
 | |
| use Request;
 | |
| use Response;
 | |
| use Session;
 | |
| use View;
 | |
| 
 | |
| /**
 | |
|  * Class HomeController.
 | |
|  */
 | |
| class HomeController extends BaseController
 | |
| {
 | |
|     /**
 | |
|      * @var Mailer
 | |
|      */
 | |
|     protected $mailer;
 | |
| 
 | |
|     /**
 | |
|      * HomeController constructor.
 | |
|      *
 | |
|      * @param Mailer $mailer
 | |
|      */
 | |
|     public function __construct(Mailer $mailer)
 | |
|     {
 | |
|         //parent::__construct();
 | |
| 
 | |
|         $this->mailer = $mailer;
 | |
|     }
 | |
| 
 | |
|     /**
 | |
|      * @return \Illuminate\Http\RedirectResponse
 | |
|      */
 | |
|     public function showIndex()
 | |
|     {
 | |
|         Session::reflash();
 | |
| 
 | |
|         if (! Utils::isNinja() && (! Utils::isDatabaseSetup() || Account::count() == 0)) {
 | |
|             return Redirect::to('/setup');
 | |
|         } elseif (Auth::check()) {
 | |
|             return Redirect::to('/dashboard');
 | |
|         } else {
 | |
|             return Redirect::to('/login');
 | |
|         }
 | |
|     }
 | |
| 
 | |
|     /**
 | |
|      * @return \Illuminate\Contracts\View\View
 | |
|      */
 | |
|     public function viewLogo()
 | |
|     {
 | |
|         return View::make('public.logo');
 | |
|     }
 | |
| 
 | |
|     /**
 | |
|      * @return \Illuminate\Contracts\View\View|\Illuminate\Http\RedirectResponse
 | |
|      */
 | |
|     public function invoiceNow()
 | |
|     {
 | |
|         $url = 'https://invoicing.co';
 | |
| 
 | |
|         if (Request::has('rc')) {
 | |
|             $url = $url . '?rc=' . \Request::input('rc');
 | |
|         }
 | |
| 
 | |
|         return Redirect::to($url);
 | |
| 
 | |
|         /*
 | |
|         // Track the referral/campaign code
 | |
|         if (Request::has('rc')) {
 | |
|             session([SESSION_REFERRAL_CODE => \Request::input('rc')]);
 | |
|         }
 | |
| 
 | |
|         if (Auth::check()) {
 | |
|             $redirectTo = \Request::input('redirect_to') ? SITE_URL . '/' . ltrim(\Request::input('redirect_to'), '/') : 'invoices/create';
 | |
|             return Redirect::to($redirectTo)->with('sign_up', \Request::input('sign_up'));
 | |
|         } else {
 | |
|             return View::make('public.invoice_now');
 | |
|         }
 | |
|         */
 | |
|     }
 | |
| 
 | |
|     /**
 | |
|      * @param $userType
 | |
|      * @param $version
 | |
|      *
 | |
|      * @return \Illuminate\Http\JsonResponse
 | |
|      */
 | |
|     public function newsFeed($userType, $version)
 | |
|     {
 | |
|         $response = Utils::getNewsFeedResponse($userType);
 | |
| 
 | |
|         return Response::json($response);
 | |
|     }
 | |
| 
 | |
|     /**
 | |
|      * @return string
 | |
|      */
 | |
|     public function hideMessage()
 | |
|     {
 | |
|         if (Auth::check() && Session::has('news_feed_id')) {
 | |
|             $newsFeedId = Session::get('news_feed_id');
 | |
|             if ($newsFeedId != NEW_VERSION_AVAILABLE && $newsFeedId > Auth::user()->news_feed_id) {
 | |
|                 $user = Auth::user();
 | |
|                 $user->news_feed_id = $newsFeedId;
 | |
|                 $user->save();
 | |
|             }
 | |
|         }
 | |
| 
 | |
|         Session::forget('news_feed_message');
 | |
| 
 | |
|         return 'success';
 | |
|     }
 | |
| 
 | |
|     /**
 | |
|      * @return string
 | |
|      */
 | |
|     public function logError()
 | |
|     {
 | |
|         return Utils::logError(\Request::input('error'), 'JavaScript');
 | |
|     }
 | |
| 
 | |
|     /**
 | |
|      * @return mixed
 | |
|      */
 | |
|     public function keepAlive()
 | |
|     {
 | |
|         return RESULT_SUCCESS;
 | |
|     }
 | |
| 
 | |
|     /**
 | |
|      * @return mixed
 | |
|      */
 | |
|     public function loggedIn()
 | |
|     {
 | |
|         return RESULT_SUCCESS;
 | |
|     }
 | |
| 
 | |
|     /**
 | |
|      * @return mixed
 | |
|      */
 | |
|     public function contactUs()
 | |
|     {
 | |
|         $message = request()->contact_us_message;
 | |
| 
 | |
|         if (request()->include_errors) {
 | |
|             $message .= "\n\n" . join("\n", Utils::getErrors());
 | |
|         }
 | |
| 
 | |
|         Mail::raw($message, function ($message) {
 | |
|             $subject = 'Customer Message [';
 | |
|             if (Utils::isNinjaProd()) {
 | |
|                 $subject .= str_replace('db-ninja-', '', config('database.default'));
 | |
|                 $subject .= Auth::user()->present()->statusCode . '] ';
 | |
|             } else {
 | |
|                 $subject .= 'Self-Host] | ';
 | |
|             }
 | |
|             $subject .= date('M jS, g:ia');
 | |
|             $message->to(env('CONTACT_EMAIL', 'contact@invoiceninja.com'))
 | |
|                     ->from(CONTACT_EMAIL, Auth::user()->present()->fullName)
 | |
|                     ->replyTo(Auth::user()->email, Auth::user()->present()->fullName)
 | |
|                     ->subject($subject);
 | |
|         });
 | |
| 
 | |
|         return RESULT_SUCCESS;
 | |
|     }
 | |
| }
 |