2013-11-26 13:45:07 +01:00
|
|
|
<?php
|
|
|
|
|
2013-12-26 01:36:34 +01:00
|
|
|
use ninja\repositories\AccountRepository;
|
|
|
|
|
2013-11-26 13:45:07 +01:00
|
|
|
class AccountController extends \BaseController {
|
|
|
|
|
2013-12-26 01:36:34 +01:00
|
|
|
protected $accountRepo;
|
|
|
|
|
|
|
|
public function __construct(AccountRepository $accountRepo)
|
|
|
|
{
|
|
|
|
parent::__construct();
|
|
|
|
|
|
|
|
$this->accountRepo = $accountRepo;
|
|
|
|
}
|
|
|
|
|
2013-11-26 13:45:07 +01:00
|
|
|
public function getStarted()
|
|
|
|
{
|
2013-12-07 21:33:07 +01:00
|
|
|
if (Auth::check())
|
|
|
|
{
|
|
|
|
return Redirect::to('invoices/create');
|
|
|
|
}
|
2013-11-26 13:45:07 +01:00
|
|
|
|
2013-12-07 21:33:07 +01:00
|
|
|
$user = false;
|
2013-11-26 13:45:07 +01:00
|
|
|
$guestKey = Input::get('guest_key');
|
|
|
|
|
|
|
|
if ($guestKey)
|
|
|
|
{
|
2013-12-03 18:32:33 +01:00
|
|
|
//$user = User::where('password', '=', $guestKey)->firstOrFail();
|
2013-11-26 13:45:07 +01:00
|
|
|
$user = User::where('password', '=', $guestKey)->first();
|
|
|
|
|
2013-12-03 23:00:01 +01:00
|
|
|
if ($user && $user->registered)
|
2013-11-26 13:45:07 +01:00
|
|
|
{
|
|
|
|
exit;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!$user)
|
|
|
|
{
|
|
|
|
$account = new Account;
|
|
|
|
$account->ip = Request::getClientIp();
|
2013-12-04 17:20:14 +01:00
|
|
|
$account->account_key = str_random(20);
|
2013-11-26 13:45:07 +01:00
|
|
|
$account->save();
|
|
|
|
|
|
|
|
$random = str_random(20);
|
|
|
|
|
|
|
|
$user = new User;
|
2013-12-03 18:32:33 +01:00
|
|
|
$user->password = $random;
|
2013-11-26 13:45:07 +01:00
|
|
|
$account->users()->save($user);
|
2013-12-07 19:45:00 +01:00
|
|
|
|
|
|
|
Session::forget(RECENTLY_VIEWED);
|
2013-11-26 13:45:07 +01:00
|
|
|
}
|
|
|
|
|
2013-12-03 23:00:01 +01:00
|
|
|
Auth::login($user, true);
|
2013-12-15 13:55:50 +01:00
|
|
|
Event::fire('user.login');
|
2013-12-02 13:22:29 +01:00
|
|
|
|
2013-11-26 13:45:07 +01:00
|
|
|
return Redirect::to('invoices/create');
|
|
|
|
}
|
|
|
|
|
2013-12-26 01:36:34 +01:00
|
|
|
public function getSearchData()
|
|
|
|
{
|
|
|
|
$data = $this->accountRepo->getSearchData();
|
|
|
|
|
|
|
|
return Response::json($data);
|
|
|
|
}
|
|
|
|
|
2013-11-26 13:45:07 +01:00
|
|
|
public function showSection($section = ACCOUNT_DETAILS)
|
|
|
|
{
|
|
|
|
if ($section == ACCOUNT_DETAILS)
|
2013-11-28 22:10:01 +01:00
|
|
|
{
|
2013-12-03 18:32:33 +01:00
|
|
|
$account = Account::with('users')->findOrFail(Auth::user()->account_id);
|
2013-11-28 22:10:01 +01:00
|
|
|
$countries = Country::orderBy('name')->get();
|
|
|
|
|
2013-12-15 13:55:50 +01:00
|
|
|
return View::make('accounts.details', array('account'=>$account, 'countries'=>$countries));
|
2013-11-26 13:45:07 +01:00
|
|
|
}
|
|
|
|
else if ($section == ACCOUNT_SETTINGS)
|
|
|
|
{
|
2013-12-03 18:32:33 +01:00
|
|
|
$account = Account::with('account_gateways')->findOrFail(Auth::user()->account_id);
|
2013-11-28 13:15:34 +01:00
|
|
|
$accountGateway = null;
|
2013-11-28 22:10:01 +01:00
|
|
|
$config = null;
|
2013-11-28 13:15:34 +01:00
|
|
|
|
|
|
|
if (count($account->account_gateways) > 0)
|
|
|
|
{
|
|
|
|
$accountGateway = $account->account_gateways[0];
|
2013-11-28 22:10:01 +01:00
|
|
|
$config = $accountGateway->config;
|
2013-11-28 13:15:34 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
$data = [
|
|
|
|
'account' => $account,
|
|
|
|
'accountGateway' => $accountGateway,
|
2013-11-28 22:10:01 +01:00
|
|
|
'config' => json_decode($config),
|
2013-12-15 13:55:50 +01:00
|
|
|
'gateways' => Gateway::all(),
|
|
|
|
'timezones' => Timezone::orderBy('location')->get(),
|
|
|
|
'dateFormats' => DateFormat::all(),
|
|
|
|
'datetimeFormats' => DatetimeFormat::all(),
|
2013-11-28 13:15:34 +01:00
|
|
|
];
|
2013-11-26 13:45:07 +01:00
|
|
|
|
2013-11-28 13:15:34 +01:00
|
|
|
foreach ($data['gateways'] as $gateway)
|
2013-11-26 13:45:07 +01:00
|
|
|
{
|
2013-11-28 13:15:34 +01:00
|
|
|
$gateway->fields = Omnipay::create($gateway->provider)->getDefaultParameters();
|
2013-11-26 13:45:07 +01:00
|
|
|
|
2013-11-28 13:15:34 +01:00
|
|
|
if ($accountGateway && $accountGateway->gateway_id == $gateway->id)
|
|
|
|
{
|
|
|
|
$accountGateway->fields = $gateway->fields;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return View::make('accounts.settings', $data);
|
2013-11-26 13:45:07 +01:00
|
|
|
}
|
|
|
|
else if ($section == ACCOUNT_IMPORT)
|
|
|
|
{
|
|
|
|
return View::make('accounts.import');
|
|
|
|
}
|
|
|
|
else if ($section == ACCOUNT_EXPORT)
|
|
|
|
{
|
|
|
|
return View::make('accounts.export');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public function doSection($section = ACCOUNT_DETAILS)
|
|
|
|
{
|
|
|
|
if ($section == ACCOUNT_DETAILS)
|
|
|
|
{
|
|
|
|
return AccountController::saveDetails();
|
|
|
|
}
|
|
|
|
else if ($section == ACCOUNT_SETTINGS)
|
|
|
|
{
|
|
|
|
return AccountController::saveSettings();
|
|
|
|
}
|
|
|
|
else if ($section == ACCOUNT_IMPORT)
|
|
|
|
{
|
|
|
|
return AccountController::importFile();
|
|
|
|
}
|
|
|
|
else if ($section == ACCOUNT_MAP)
|
|
|
|
{
|
|
|
|
return AccountController::mapFile();
|
|
|
|
}
|
|
|
|
else if ($section == ACCOUNT_EXPORT)
|
|
|
|
{
|
|
|
|
return AccountController::export();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private function export()
|
|
|
|
{
|
|
|
|
$output = fopen("php://output",'w') or die("Can't open php://output");
|
|
|
|
header("Content-Type:application/csv");
|
|
|
|
header("Content-Disposition:attachment;filename=export.csv");
|
|
|
|
|
|
|
|
$clients = Client::where('account_id','=',Auth::user()->account_id)->get();
|
|
|
|
AccountController::exportData($output, $clients->toArray());
|
|
|
|
|
|
|
|
$contacts = DB::table('contacts')->whereIn('client_id', function($query){
|
|
|
|
$query->select('client_id')->from('clients')->where('account_id','=',Auth::user()->account_id);
|
|
|
|
})->get();
|
2013-12-07 21:33:07 +01:00
|
|
|
AccountController::exportData($output, Utils::toArray($contacts));
|
2013-11-26 13:45:07 +01:00
|
|
|
|
|
|
|
$invoices = Invoice::where('account_id','=',Auth::user()->account_id)->get();
|
|
|
|
AccountController::exportData($output, $invoices->toArray());
|
|
|
|
|
|
|
|
$invoiceItems = DB::table('invoice_items')->whereIn('invoice_id', function($query){
|
|
|
|
$query->select('invoice_id')->from('invoices')->where('account_id','=',Auth::user()->account_id);
|
|
|
|
})->get();
|
2013-12-07 21:33:07 +01:00
|
|
|
AccountController::exportData($output, Utils::toArray($invoiceItems));
|
2013-11-26 13:45:07 +01:00
|
|
|
|
|
|
|
$payments = Payment::where('account_id','=',Auth::user()->account_id)->get();
|
|
|
|
AccountController::exportData($output, $payments->toArray());
|
|
|
|
|
|
|
|
fclose($output);
|
|
|
|
exit;
|
|
|
|
}
|
|
|
|
|
|
|
|
private function exportData($output, $data)
|
|
|
|
{
|
|
|
|
if (count($data) > 0)
|
|
|
|
{
|
|
|
|
fputcsv($output, array_keys($data[0]));
|
|
|
|
}
|
|
|
|
|
|
|
|
foreach($data as $record)
|
|
|
|
{
|
|
|
|
fputcsv($output, $record);
|
|
|
|
}
|
|
|
|
|
|
|
|
fwrite($output, "\n");
|
|
|
|
}
|
|
|
|
|
|
|
|
private function importFile()
|
|
|
|
{
|
|
|
|
$data = Session::get('data');
|
|
|
|
Session::forget('data');
|
|
|
|
|
|
|
|
$map = Input::get('map');
|
|
|
|
$count = 0;
|
|
|
|
$hasHeaders = Input::get('header_checkbox');
|
|
|
|
|
2013-12-01 21:58:25 +01:00
|
|
|
$countries = Country::all();
|
|
|
|
$countryMap = [];
|
|
|
|
foreach ($countries as $country) {
|
|
|
|
$countryMap[strtolower($country->name)] = $country->id;
|
|
|
|
}
|
|
|
|
|
2013-11-26 13:45:07 +01:00
|
|
|
foreach ($data as $row)
|
|
|
|
{
|
|
|
|
if ($hasHeaders)
|
|
|
|
{
|
|
|
|
$hasHeaders = false;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2013-12-05 16:23:24 +01:00
|
|
|
$client = Client::createNew();
|
|
|
|
$contact = Contact::createNew();
|
2013-11-26 13:45:07 +01:00
|
|
|
$count++;
|
|
|
|
|
|
|
|
foreach ($row as $index => $value)
|
|
|
|
{
|
|
|
|
$field = $map[$index];
|
2013-12-07 19:45:00 +01:00
|
|
|
$value = trim($value);
|
2013-11-26 13:45:07 +01:00
|
|
|
|
|
|
|
if ($field == Client::$fieldName)
|
|
|
|
{
|
|
|
|
$client->name = $value;
|
|
|
|
}
|
|
|
|
else if ($field == Client::$fieldPhone)
|
|
|
|
{
|
|
|
|
$client->work_phone = $value;
|
|
|
|
}
|
|
|
|
else if ($field == Client::$fieldAddress1)
|
|
|
|
{
|
|
|
|
$client->address1 = $value;
|
|
|
|
}
|
|
|
|
else if ($field == Client::$fieldAddress2)
|
|
|
|
{
|
|
|
|
$client->address2 = $value;
|
|
|
|
}
|
|
|
|
else if ($field == Client::$fieldCity)
|
|
|
|
{
|
|
|
|
$client->city = $value;
|
|
|
|
}
|
|
|
|
else if ($field == Client::$fieldState)
|
|
|
|
{
|
|
|
|
$client->state = $value;
|
|
|
|
}
|
|
|
|
else if ($field == Client::$fieldPostalCode)
|
|
|
|
{
|
|
|
|
$client->postal_code = $value;
|
|
|
|
}
|
2013-12-01 21:58:25 +01:00
|
|
|
else if ($field == Client::$fieldCountry)
|
|
|
|
{
|
|
|
|
$value = strtolower($value);
|
|
|
|
$client->country_id = isset($countryMap[$value]) ? $countryMap[$value] : null;
|
|
|
|
}
|
2013-11-26 13:45:07 +01:00
|
|
|
else if ($field == Client::$fieldNotes)
|
|
|
|
{
|
|
|
|
$client->notes = $value;
|
|
|
|
}
|
|
|
|
else if ($field == Contact::$fieldFirstName)
|
|
|
|
{
|
|
|
|
$contact->first_name = $value;
|
|
|
|
}
|
|
|
|
else if ($field == Contact::$fieldLastName)
|
|
|
|
{
|
|
|
|
$contact->last_name = $value;
|
|
|
|
}
|
|
|
|
else if ($field == Contact::$fieldPhone)
|
|
|
|
{
|
|
|
|
$contact->phone = $value;
|
|
|
|
}
|
|
|
|
else if ($field == Contact::$fieldEmail)
|
|
|
|
{
|
|
|
|
$contact->email = $value;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
$client->save();
|
2013-11-26 22:45:10 +01:00
|
|
|
$client->contacts()->save($contact);
|
2013-11-26 13:45:07 +01:00
|
|
|
}
|
|
|
|
|
2013-12-07 21:33:07 +01:00
|
|
|
$message = Utils::pluralize('Successfully created ? client', $count);
|
2013-11-26 13:45:07 +01:00
|
|
|
Session::flash('message', $message);
|
|
|
|
return Redirect::to('clients');
|
|
|
|
}
|
|
|
|
|
|
|
|
private function mapFile()
|
|
|
|
{
|
|
|
|
$file = Input::file('file');
|
|
|
|
$name = $file->getRealPath();
|
|
|
|
|
|
|
|
require_once(app_path().'/includes/parsecsv.lib.php');
|
|
|
|
$csv = new parseCSV();
|
|
|
|
$csv->heading = false;
|
|
|
|
$csv->auto($name);
|
|
|
|
|
|
|
|
Session::put('data', $csv->data);
|
|
|
|
|
|
|
|
$headers = false;
|
|
|
|
$hasHeaders = false;
|
|
|
|
$mapped = array();
|
|
|
|
$columns = array('',
|
|
|
|
Client::$fieldName,
|
|
|
|
Client::$fieldPhone,
|
|
|
|
Client::$fieldAddress1,
|
|
|
|
Client::$fieldAddress2,
|
|
|
|
Client::$fieldCity,
|
|
|
|
Client::$fieldState,
|
|
|
|
Client::$fieldPostalCode,
|
2013-12-01 21:58:25 +01:00
|
|
|
Client::$fieldCountry,
|
2013-11-26 13:45:07 +01:00
|
|
|
Client::$fieldNotes,
|
|
|
|
Contact::$fieldFirstName,
|
|
|
|
Contact::$fieldLastName,
|
|
|
|
Contact::$fieldPhone,
|
|
|
|
Contact::$fieldEmail
|
|
|
|
);
|
|
|
|
|
|
|
|
if (count($csv->data) > 0)
|
|
|
|
{
|
|
|
|
$headers = $csv->data[0];
|
|
|
|
foreach ($headers as $title)
|
|
|
|
{
|
|
|
|
if (strpos(strtolower($title),'name') > 0)
|
|
|
|
{
|
|
|
|
$hasHeaders = true;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
for ($i=0; $i<count($headers); $i++)
|
|
|
|
{
|
|
|
|
$title = strtolower($headers[$i]);
|
|
|
|
$mapped[$i] = '';
|
|
|
|
|
|
|
|
if ($hasHeaders)
|
|
|
|
{
|
|
|
|
$map = array(
|
|
|
|
'first' => Contact::$fieldFirstName,
|
|
|
|
'last' => Contact::$fieldLastName,
|
|
|
|
'email' => Contact::$fieldEmail,
|
|
|
|
'mobile' => Contact::$fieldPhone,
|
|
|
|
'phone' => Client::$fieldPhone,
|
2013-12-05 21:25:20 +01:00
|
|
|
'name|organization' => Client::$fieldName,
|
2013-11-26 13:45:07 +01:00
|
|
|
'address|address1' => Client::$fieldAddress1,
|
|
|
|
'address2' => Client::$fieldAddress2,
|
|
|
|
'city' => Client::$fieldCity,
|
|
|
|
'state' => Client::$fieldState,
|
|
|
|
'zip|postal|code' => Client::$fieldPostalCode,
|
2013-12-01 21:58:25 +01:00
|
|
|
'country' => Client::$fieldCountry,
|
2013-11-26 13:45:07 +01:00
|
|
|
'note' => Client::$fieldNotes,
|
|
|
|
);
|
|
|
|
|
|
|
|
foreach ($map as $search => $column)
|
|
|
|
{
|
|
|
|
foreach(explode("|", $search) as $string)
|
|
|
|
{
|
|
|
|
if (strpos($title, $string) !== false)
|
|
|
|
{
|
|
|
|
$mapped[$i] = $column;
|
|
|
|
break(2);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
$data = array(
|
|
|
|
'data' => $csv->data,
|
|
|
|
'headers' => $headers,
|
|
|
|
'hasHeaders' => $hasHeaders,
|
|
|
|
'columns' => $columns,
|
|
|
|
'mapped' => $mapped
|
|
|
|
);
|
|
|
|
|
|
|
|
return View::make('accounts.import_map', $data);
|
|
|
|
}
|
|
|
|
|
2013-11-28 13:15:34 +01:00
|
|
|
private function saveSettings()
|
2013-11-26 13:45:07 +01:00
|
|
|
{
|
|
|
|
$rules = array();
|
|
|
|
|
2013-11-28 13:15:34 +01:00
|
|
|
if ($gatewayId = Input::get('gateway_id'))
|
|
|
|
{
|
2013-12-03 18:32:33 +01:00
|
|
|
$gateway = Gateway::findOrFail($gatewayId);
|
2013-11-26 13:45:07 +01:00
|
|
|
$fields = Omnipay::create($gateway->provider)->getDefaultParameters();
|
2013-11-28 13:15:34 +01:00
|
|
|
|
2013-11-26 13:45:07 +01:00
|
|
|
foreach ($fields as $field => $details)
|
|
|
|
{
|
2013-11-28 13:15:34 +01:00
|
|
|
if (!in_array($field, ['testMode', 'developerMode', 'headerImageUrl', 'solutionType', 'landingPage']))
|
2013-11-26 13:45:07 +01:00
|
|
|
{
|
|
|
|
$rules[$gateway->id.'_'.$field] = 'required';
|
2013-11-28 13:15:34 +01:00
|
|
|
}
|
|
|
|
}
|
2013-11-26 13:45:07 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
$validator = Validator::make(Input::all(), $rules);
|
|
|
|
|
|
|
|
if ($validator->fails())
|
|
|
|
{
|
|
|
|
return Redirect::to('account/settings')
|
|
|
|
->withErrors($validator)
|
|
|
|
->withInput();
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2013-12-04 17:20:14 +01:00
|
|
|
$account = Account::findOrFail(Auth::user()->account_id);
|
2013-11-26 13:45:07 +01:00
|
|
|
$account->account_gateways()->forceDelete();
|
|
|
|
|
2013-12-15 13:55:50 +01:00
|
|
|
$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;
|
|
|
|
|
2013-12-04 17:20:14 +01:00
|
|
|
$account->invoice_terms = Input::get('invoice_terms');
|
|
|
|
$account->save();
|
|
|
|
|
2013-12-25 22:34:42 +01:00
|
|
|
$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->save();
|
|
|
|
|
|
|
|
Event::fire('user.refresh');
|
|
|
|
|
2013-11-28 13:15:34 +01:00
|
|
|
if ($gatewayId)
|
|
|
|
{
|
2013-11-26 13:45:07 +01:00
|
|
|
$accountGateway = new AccountGateway;
|
2013-11-28 13:15:34 +01:00
|
|
|
$accountGateway->gateway_id = $gatewayId;
|
|
|
|
|
|
|
|
$config = new stdClass;
|
|
|
|
foreach ($fields as $field => $details)
|
|
|
|
{
|
2013-12-07 19:45:00 +01:00
|
|
|
$config->$field = trim(Input::get($gateway->id.'_'.$field));
|
2013-11-28 13:15:34 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
$accountGateway->config = json_encode($config);
|
2013-11-26 13:45:07 +01:00
|
|
|
$account->account_gateways()->save($accountGateway);
|
|
|
|
}
|
|
|
|
|
2013-11-28 13:15:34 +01:00
|
|
|
Session::flash('message', 'Successfully updated settings');
|
2013-11-26 13:45:07 +01:00
|
|
|
return Redirect::to('account/settings');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private function saveDetails()
|
|
|
|
{
|
|
|
|
$rules = array(
|
|
|
|
'name' => 'required',
|
|
|
|
'email' => 'email|required'
|
|
|
|
);
|
|
|
|
|
|
|
|
$validator = Validator::make(Input::all(), $rules);
|
|
|
|
|
|
|
|
if ($validator->fails())
|
|
|
|
{
|
|
|
|
return Redirect::to('account/details')
|
|
|
|
->withErrors($validator)
|
|
|
|
->withInput();
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2013-12-03 18:32:33 +01:00
|
|
|
$account = Account::findOrFail(Auth::user()->account_id);
|
2013-12-07 19:45:00 +01:00
|
|
|
$account->name = trim(Input::get('name'));
|
|
|
|
$account->address1 = trim(Input::get('address1'));
|
|
|
|
$account->address2 = trim(Input::get('address2'));
|
|
|
|
$account->city = trim(Input::get('city'));
|
|
|
|
$account->state = trim(Input::get('state'));
|
|
|
|
$account->postal_code = trim(Input::get('postal_code'));
|
2013-12-02 13:22:29 +01:00
|
|
|
$account->country_id = Input::get('country_id') ? Input::get('country_id') : null;
|
2013-11-26 13:45:07 +01:00
|
|
|
$account->save();
|
|
|
|
|
|
|
|
$user = $account->users()->first();
|
2013-12-07 19:45:00 +01:00
|
|
|
$user->first_name = trim(Input::get('first_name'));
|
|
|
|
$user->last_name = trim(Input::get('last_name'));
|
|
|
|
$user->email = trim(Input::get('email'));
|
|
|
|
$user->phone = trim(Input::get('phone'));
|
2013-11-26 13:45:07 +01:00
|
|
|
$user->save();
|
|
|
|
|
2013-12-02 13:22:29 +01:00
|
|
|
if (Input::get('timezone_id')) {
|
2013-12-03 18:32:33 +01:00
|
|
|
$timezone = Timezone::findOrFail(Input::get('timezone_id'));
|
2013-12-02 13:22:29 +01:00
|
|
|
Session::put('tz', $timezone->name);
|
|
|
|
}
|
|
|
|
|
2013-11-26 13:45:07 +01:00
|
|
|
/* Logo image file */
|
|
|
|
if ($file = Input::file('logo'))
|
|
|
|
{
|
|
|
|
$path = Input::file('logo')->getRealPath();
|
2013-12-04 17:20:14 +01:00
|
|
|
File::delete('logo/' . $account->account_key . '.jpg');
|
|
|
|
Image::make($path)->resize(150, 100, true, false)->save('logo/' . $account->account_key . '.jpg');
|
2013-11-26 13:45:07 +01:00
|
|
|
}
|
|
|
|
|
2013-11-28 13:15:34 +01:00
|
|
|
Session::flash('message', 'Successfully updated details');
|
2013-11-26 13:45:07 +01:00
|
|
|
return Redirect::to('account/details');
|
|
|
|
}
|
|
|
|
}
|
2013-12-03 18:32:33 +01:00
|
|
|
|
|
|
|
public function checkEmail()
|
|
|
|
{
|
2013-12-03 23:00:01 +01:00
|
|
|
$email = User::where('email', '=', Input::get('email'))->where('id', '<>', Auth::user()->id)->first();
|
2013-12-03 18:32:33 +01:00
|
|
|
|
|
|
|
if ($email) {
|
|
|
|
return "taken";
|
|
|
|
} else {
|
|
|
|
return "available";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public function submitSignup()
|
|
|
|
{
|
|
|
|
$rules = array(
|
|
|
|
'first_name' => 'required',
|
|
|
|
'last_name' => 'required',
|
|
|
|
'password' => 'required|min:6',
|
|
|
|
'email' => 'email|required'
|
|
|
|
);
|
|
|
|
|
|
|
|
$validator = Validator::make(Input::all(), $rules);
|
|
|
|
|
|
|
|
if ($validator->fails())
|
|
|
|
{
|
|
|
|
return Redirect::to(Input::get('path'));
|
|
|
|
}
|
|
|
|
|
|
|
|
$user = Auth::user();
|
2013-12-24 22:27:36 +01:00
|
|
|
$user->first_name = trim(Input::get('new_first_name'));
|
|
|
|
$user->last_name = trim(Input::get('new_last_name'));
|
|
|
|
$user->email = trim(Input::get('new_email'));
|
|
|
|
$user->password = trim(Input::get('new_password'));
|
2013-12-03 18:32:33 +01:00
|
|
|
$user->registered = true;
|
|
|
|
$user->save();
|
|
|
|
|
|
|
|
$activities = Activity::scope()->get();
|
|
|
|
foreach ($activities as $activity) {
|
|
|
|
$activity->message = str_replace('Guest', $user->getFullName(), $activity->message);
|
|
|
|
$activity->save();
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
Mail::send(array('html'=>'emails.welcome_html','text'=>'emails.welcome_text'), $data, function($message) use ($user)
|
|
|
|
{
|
|
|
|
$message->from('hillelcoren@gmail.com', 'Hillel Coren');
|
|
|
|
$message->to($user->email);
|
|
|
|
});
|
|
|
|
*/
|
|
|
|
|
|
|
|
Session::flash('message', 'Successfully registered');
|
2013-12-03 23:00:01 +01:00
|
|
|
return Redirect::to(Input::get('path'))->with('clearGuestKey', true);
|
2013-12-03 18:32:33 +01:00
|
|
|
}
|
2013-11-26 13:45:07 +01:00
|
|
|
}
|