mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2025-07-09 03:14:30 -04:00
Fix for deleting account
This commit is contained in:
parent
3ed5fdf09f
commit
861672e9e9
@ -758,7 +758,7 @@ class AccountController extends BaseController
|
|||||||
|
|
||||||
return Redirect::to('settings/'.ACCOUNT_CLIENT_PORTAL);
|
return Redirect::to('settings/'.ACCOUNT_CLIENT_PORTAL);
|
||||||
}
|
}
|
||||||
|
|
||||||
private function saveEmailTemplates()
|
private function saveEmailTemplates()
|
||||||
{
|
{
|
||||||
if (Auth::user()->account->hasFeature(FEATURE_EMAIL_TEMPLATES_REMINDERS)) {
|
if (Auth::user()->account->hasFeature(FEATURE_EMAIL_TEMPLATES_REMINDERS)) {
|
||||||
@ -1254,8 +1254,9 @@ class AccountController extends BaseController
|
|||||||
$this->accountRepo->unlinkAccount($account);
|
$this->accountRepo->unlinkAccount($account);
|
||||||
if ($account->company->accounts->count() == 1) {
|
if ($account->company->accounts->count() == 1) {
|
||||||
$account->company->forceDelete();
|
$account->company->forceDelete();
|
||||||
|
} else {
|
||||||
|
$account->forceDelete();
|
||||||
}
|
}
|
||||||
$account->forceDelete();
|
|
||||||
|
|
||||||
Auth::logout();
|
Auth::logout();
|
||||||
Session::flush();
|
Session::flush();
|
||||||
|
@ -19,10 +19,10 @@ class EnterprisePlan extends Migration
|
|||||||
}
|
}
|
||||||
$timeout = max($timeout - 10, $timeout * .9);
|
$timeout = max($timeout - 10, $timeout * .9);
|
||||||
$startTime = time();
|
$startTime = time();
|
||||||
|
|
||||||
if (!Schema::hasTable('companies')) {
|
if (!Schema::hasTable('companies')) {
|
||||||
Schema::create('companies', function($table)
|
Schema::create('companies', function($table)
|
||||||
{
|
{
|
||||||
$table->increments('id');
|
$table->increments('id');
|
||||||
|
|
||||||
$table->enum('plan', array('pro', 'enterprise', 'white_label'))->nullable();
|
$table->enum('plan', array('pro', 'enterprise', 'white_label'))->nullable();
|
||||||
@ -44,15 +44,15 @@ class EnterprisePlan extends Migration
|
|||||||
$table->softDeletes();
|
$table->softDeletes();
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!Schema::hasColumn('accounts', 'company_id')) {
|
if (!Schema::hasColumn('accounts', 'company_id')) {
|
||||||
Schema::table('accounts', function($table)
|
Schema::table('accounts', function($table)
|
||||||
{
|
{
|
||||||
$table->unsignedInteger('company_id')->nullable();
|
$table->unsignedInteger('company_id')->nullable();
|
||||||
$table->foreign('company_id')->references('id')->on('companies');
|
$table->foreign('company_id')->references('id')->on('companies')->onDelete('cascade');
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
$single_account_ids = \DB::table('users')
|
$single_account_ids = \DB::table('users')
|
||||||
->leftJoin('user_accounts', function ($join) {
|
->leftJoin('user_accounts', function ($join) {
|
||||||
$join->on('user_accounts.user_id1', '=', 'users.id');
|
$join->on('user_accounts.user_id1', '=', 'users.id');
|
||||||
@ -69,14 +69,14 @@ class EnterprisePlan extends Migration
|
|||||||
$query->orWhere('users.public_id', '=', 0);
|
$query->orWhere('users.public_id', '=', 0);
|
||||||
})
|
})
|
||||||
->lists('users.account_id');
|
->lists('users.account_id');
|
||||||
|
|
||||||
if (count($single_account_ids)) {
|
if (count($single_account_ids)) {
|
||||||
foreach (Account::find($single_account_ids) as $account) {
|
foreach (Account::find($single_account_ids) as $account) {
|
||||||
$this->upAccounts($account);
|
$this->upAccounts($account);
|
||||||
$this->checkTimeout($timeout, $startTime);
|
$this->checkTimeout($timeout, $startTime);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
$group_accounts = \DB::select(
|
$group_accounts = \DB::select(
|
||||||
'SELECT u1.account_id as account1, u2.account_id as account2, u3.account_id as account3, u4.account_id as account4, u5.account_id as account5 FROM `user_accounts`
|
'SELECT u1.account_id as account1, u2.account_id as account2, u3.account_id as account3, u4.account_id as account4, u5.account_id as account5 FROM `user_accounts`
|
||||||
LEFT JOIN users u1 ON (u1.public_id IS NULL OR u1.public_id = 0) AND user_accounts.user_id1 = u1.id
|
LEFT JOIN users u1 ON (u1.public_id IS NULL OR u1.public_id = 0) AND user_accounts.user_id1 = u1.id
|
||||||
@ -94,14 +94,14 @@ class EnterprisePlan extends Migration
|
|||||||
OR (a3.id IS NOT NULL AND a3.company_id IS NULL)
|
OR (a3.id IS NOT NULL AND a3.company_id IS NULL)
|
||||||
OR (a4.id IS NOT NULL AND a4.company_id IS NULL)
|
OR (a4.id IS NOT NULL AND a4.company_id IS NULL)
|
||||||
OR (a5.id IS NOT NULL AND a5.company_id IS NULL)');
|
OR (a5.id IS NOT NULL AND a5.company_id IS NULL)');
|
||||||
|
|
||||||
if (count($group_accounts)) {
|
if (count($group_accounts)) {
|
||||||
foreach ($group_accounts as $group_account) {
|
foreach ($group_accounts as $group_account) {
|
||||||
$this->upAccounts(null, Account::find(get_object_vars($group_account)));
|
$this->upAccounts(null, Account::find(get_object_vars($group_account)));
|
||||||
$this->checkTimeout($timeout, $startTime);
|
$this->checkTimeout($timeout, $startTime);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (Schema::hasColumn('accounts', 'pro_plan_paid')) {
|
if (Schema::hasColumn('accounts', 'pro_plan_paid')) {
|
||||||
Schema::table('accounts', function($table)
|
Schema::table('accounts', function($table)
|
||||||
{
|
{
|
||||||
@ -110,16 +110,16 @@ class EnterprisePlan extends Migration
|
|||||||
});
|
});
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private function upAccounts($primaryAccount, $otherAccounts = array()) {
|
private function upAccounts($primaryAccount, $otherAccounts = array()) {
|
||||||
if(!$primaryAccount) {
|
if(!$primaryAccount) {
|
||||||
$primaryAccount = $otherAccounts->first();
|
$primaryAccount = $otherAccounts->first();
|
||||||
}
|
}
|
||||||
|
|
||||||
if (empty($primaryAccount)) {
|
if (empty($primaryAccount)) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
$company = Company::create();
|
$company = Company::create();
|
||||||
if ($primaryAccount->pro_plan_paid && $primaryAccount->pro_plan_paid != '0000-00-00') {
|
if ($primaryAccount->pro_plan_paid && $primaryAccount->pro_plan_paid != '0000-00-00') {
|
||||||
$company->plan = 'pro';
|
$company->plan = 'pro';
|
||||||
@ -145,7 +145,7 @@ class EnterprisePlan extends Migration
|
|||||||
}
|
}
|
||||||
} elseif ($company->plan_paid != NINJA_DATE) {
|
} elseif ($company->plan_paid != NINJA_DATE) {
|
||||||
$company->plan_expires = $expires;
|
$company->plan_expires = $expires;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if ($primaryAccount->pro_plan_trial && $primaryAccount->pro_plan_trial != '0000-00-00') {
|
if ($primaryAccount->pro_plan_trial && $primaryAccount->pro_plan_trial != '0000-00-00') {
|
||||||
@ -157,7 +157,7 @@ class EnterprisePlan extends Migration
|
|||||||
|
|
||||||
$primaryAccount->company_id = $company->id;
|
$primaryAccount->company_id = $company->id;
|
||||||
$primaryAccount->save();
|
$primaryAccount->save();
|
||||||
|
|
||||||
if (!empty($otherAccounts)) {
|
if (!empty($otherAccounts)) {
|
||||||
foreach ($otherAccounts as $account) {
|
foreach ($otherAccounts as $account) {
|
||||||
if ($account && $account->id != $primaryAccount->id) {
|
if ($account && $account->id != $primaryAccount->id) {
|
||||||
@ -167,13 +167,13 @@ class EnterprisePlan extends Migration
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
protected function checkTimeout($timeout, $startTime) {
|
protected function checkTimeout($timeout, $startTime) {
|
||||||
if (time() - $startTime >= $timeout) {
|
if (time() - $startTime >= $timeout) {
|
||||||
exit('Migration reached time limit; please run again to continue');
|
exit('Migration reached time limit; please run again to continue');
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Reverse the migrations.
|
* Reverse the migrations.
|
||||||
*
|
*
|
||||||
@ -187,7 +187,7 @@ class EnterprisePlan extends Migration
|
|||||||
}
|
}
|
||||||
$timeout = max($timeout - 10, $timeout * .9);
|
$timeout = max($timeout - 10, $timeout * .9);
|
||||||
$startTime = time();
|
$startTime = time();
|
||||||
|
|
||||||
if (!Schema::hasColumn('accounts', 'pro_plan_paid')) {
|
if (!Schema::hasColumn('accounts', 'pro_plan_paid')) {
|
||||||
Schema::table('accounts', function($table)
|
Schema::table('accounts', function($table)
|
||||||
{
|
{
|
||||||
@ -195,7 +195,7 @@ class EnterprisePlan extends Migration
|
|||||||
$table->date('pro_plan_trial')->nullable();
|
$table->date('pro_plan_trial')->nullable();
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
$company_ids = \DB::table('companies')
|
$company_ids = \DB::table('companies')
|
||||||
->leftJoin('accounts', 'accounts.company_id', '=', 'companies.id')
|
->leftJoin('accounts', 'accounts.company_id', '=', 'companies.id')
|
||||||
->whereNull('accounts.pro_plan_paid')
|
->whereNull('accounts.pro_plan_paid')
|
||||||
@ -205,9 +205,9 @@ class EnterprisePlan extends Migration
|
|||||||
$query->orWhereNotNull('companies.trial_started');
|
$query->orWhereNotNull('companies.trial_started');
|
||||||
})
|
})
|
||||||
->lists('companies.id');
|
->lists('companies.id');
|
||||||
|
|
||||||
$company_ids = array_unique($company_ids);
|
$company_ids = array_unique($company_ids);
|
||||||
|
|
||||||
if (count($company_ids)) {
|
if (count($company_ids)) {
|
||||||
foreach (Company::find($company_ids) as $company) {
|
foreach (Company::find($company_ids) as $company) {
|
||||||
foreach ($company->accounts as $account) {
|
foreach ($company->accounts as $account) {
|
||||||
@ -218,7 +218,7 @@ class EnterprisePlan extends Migration
|
|||||||
$this->checkTimeout($timeout, $startTime);
|
$this->checkTimeout($timeout, $startTime);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (Schema::hasColumn('accounts', 'company_id')) {
|
if (Schema::hasColumn('accounts', 'company_id')) {
|
||||||
Schema::table('accounts', function($table)
|
Schema::table('accounts', function($table)
|
||||||
{
|
{
|
||||||
@ -226,7 +226,7 @@ class EnterprisePlan extends Migration
|
|||||||
$table->dropColumn('company_id');
|
$table->dropColumn('company_id');
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
Schema::dropIfExists('companies');
|
Schema::dropIfExists('companies');
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user