1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-22 17:31:35 +02:00
invoiceninja/database/seeds/UserTableSeeder.php

98 lines
2.9 KiB
PHP
Raw Normal View History

2015-03-16 22:45:25 +01:00
<?php
2015-08-20 17:09:04 +02:00
use App\Models\User;
2016-05-05 21:27:02 +02:00
use App\Models\Font;
2015-08-20 17:09:04 +02:00
use App\Models\Account;
2016-04-19 22:28:25 +02:00
use App\Models\Company;
2015-09-25 11:57:40 +02:00
use App\Models\Affiliate;
2016-05-05 19:18:02 +02:00
use App\Models\Country;
2016-05-05 21:12:33 +02:00
use App\Models\InvoiceDesign;
2016-06-06 21:45:21 +02:00
use App\Models\Client;
use App\Models\Contact;
use App\Models\Product;
2016-05-05 19:18:02 +02:00
use Faker\Factory;
2015-08-20 17:09:04 +02:00
2015-03-16 22:45:25 +01:00
class UserTableSeeder extends Seeder
{
public function run()
{
2015-08-20 17:09:04 +02:00
$this->command->info('Running UserTableSeeder');
Eloquent::unguard();
2016-05-05 19:18:02 +02:00
$faker = Faker\Factory::create();
$company = Company::create();
2015-08-20 17:09:04 +02:00
$account = Account::create([
2016-05-05 19:18:02 +02:00
'name' => $faker->name,
'address1' => $faker->streetAddress,
'address2' => $faker->secondaryAddress,
'city' => $faker->city,
'state' => $faker->state,
'postal_code' => $faker->postcode,
'country_id' => Country::all()->random()->id,
2015-11-03 20:03:24 +01:00
'account_key' => str_random(RANDOM_KEY_LENGTH),
2016-05-05 19:18:02 +02:00
'invoice_terms' => $faker->text($faker->numberBetween(50, 300)),
'work_phone' => $faker->phoneNumber,
'work_email' => $faker->safeEmail,
'invoice_design_id' => InvoiceDesign::where('id', '<', CUSTOM_DESIGN)->get()->random()->id,
2016-05-05 21:32:26 +02:00
'header_font_id' => min(Font::all()->random()->id, 17),
'body_font_id' => min(Font::all()->random()->id, 17),
2016-05-05 19:18:02 +02:00
'primary_color' => $faker->hexcolor,
2015-08-20 17:09:04 +02:00
'timezone_id' => 1,
2016-04-19 23:02:02 +02:00
'company_id' => $company->id,
2015-08-20 17:09:04 +02:00
]);
2015-03-16 22:45:25 +01:00
2016-06-06 21:45:21 +02:00
$user = User::create([
'first_name' => $faker->firstName,
'last_name' => $faker->lastName,
2015-08-20 17:09:04 +02:00
'email' => TEST_USERNAME,
'username' => TEST_USERNAME,
'account_id' => $account->id,
'password' => Hash::make(TEST_PASSWORD),
2015-08-30 14:08:15 +02:00
'registered' => true,
'confirmed' => true,
2016-05-05 19:18:02 +02:00
'notify_sent' => false,
'notify_paid' => false,
2016-06-07 13:41:07 +02:00
'is_admin' => 1,
2015-08-20 17:09:04 +02:00
]);
2015-09-25 11:57:40 +02:00
2016-06-06 21:45:21 +02:00
$client = Client::create([
'user_id' => $user->id,
'account_id' => $account->id,
'public_id' => 1,
'name' => $faker->name,
'address1' => $faker->streetAddress,
'address2' => $faker->secondaryAddress,
'city' => $faker->city,
'state' => $faker->state,
'postal_code' => $faker->postcode,
'country_id' => Country::all()->random()->id,
]);
Contact::create([
'user_id' => $user->id,
'account_id' => $account->id,
'client_id' => $client->id,
'public_id' => 1,
'email' => TEST_USERNAME,
]);
Product::create([
'user_id' => $user->id,
'account_id' => $account->id,
'public_id' => 1,
'product_key' => 'ITEM',
'notes' => 'Something nice...',
'cost' => 10,
]);
2015-09-25 11:57:40 +02:00
Affiliate::create([
'affiliate_key' => SELF_HOST_AFFILIATE_KEY
]);
2015-03-16 22:45:25 +01:00
}
}