init
This commit is contained in:
188
install/UserDemoData.php
Normal file
188
install/UserDemoData.php
Normal file
@@ -0,0 +1,188 @@
|
||||
<?php
|
||||
if(!defined('sugarEntry') || !sugarEntry) die('Not A Valid Entry Point');
|
||||
/*********************************************************************************
|
||||
* SugarCRM Community Edition is a customer relationship management program developed by
|
||||
* SugarCRM, Inc. Copyright (C) 2004-2011 SugarCRM Inc.
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or modify it under
|
||||
* the terms of the GNU Affero General Public License version 3 as published by the
|
||||
* Free Software Foundation with the addition of the following permission added
|
||||
* to Section 15 as permitted in Section 7(a): FOR ANY PART OF THE COVERED WORK
|
||||
* IN WHICH THE COPYRIGHT IS OWNED BY SUGARCRM, SUGARCRM DISCLAIMS THE WARRANTY
|
||||
* OF NON INFRINGEMENT OF THIRD PARTY RIGHTS.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful, but WITHOUT
|
||||
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
|
||||
* FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for more
|
||||
* details.
|
||||
*
|
||||
* You should have received a copy of the GNU Affero General Public License along with
|
||||
* this program; if not, see http://www.gnu.org/licenses or write to the Free
|
||||
* Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
|
||||
* 02110-1301 USA.
|
||||
*
|
||||
* You can contact SugarCRM, Inc. headquarters at 10050 North Wolfe Road,
|
||||
* SW2-130, Cupertino, CA 95014, USA. or at email address contact@sugarcrm.com.
|
||||
*
|
||||
* The interactive user interfaces in modified source and object code versions
|
||||
* of this program must display Appropriate Legal Notices, as required under
|
||||
* Section 5 of the GNU Affero General Public License version 3.
|
||||
*
|
||||
* In accordance with Section 7(b) of the GNU Affero General Public License version 3,
|
||||
* these Appropriate Legal Notices must retain the display of the "Powered by
|
||||
* SugarCRM" logo. If the display of the logo is not reasonably feasible for
|
||||
* technical reasons, the Appropriate Legal Notices must display the words
|
||||
* "Powered by SugarCRM".
|
||||
********************************************************************************/
|
||||
|
||||
|
||||
|
||||
|
||||
class UserDemoData {
|
||||
var $_user;
|
||||
var $_large_scale_test;
|
||||
var $guids = array(
|
||||
'jim' => 'seed_jim_id',
|
||||
'sarah' => 'seed_sarah_id',
|
||||
'sally' => 'seed_sally_id',
|
||||
'max' => 'seed_max_id',
|
||||
'will' => 'seed_will_id',
|
||||
'chris' => 'seed_chris_id',
|
||||
/*
|
||||
* Pending fix of demo data mechanism
|
||||
'jim' => 'jim00000-0000-0000-0000-000000000000',
|
||||
'sarah' => 'sarah000-0000-0000-0000-000000000000',
|
||||
'sally' => 'sally000-0000-0000-0000-000000000000',
|
||||
'max' => 'max00000-0000-0000-0000-000000000000',
|
||||
'will' => 'will0000-0000-0000-0000-000000000000',
|
||||
'chris' => 'chris000-0000-0000-0000-000000000000',
|
||||
*/
|
||||
);
|
||||
|
||||
/**
|
||||
* Constructor for creating user demo data
|
||||
*/
|
||||
function UserDemoData($seed_user, $large_scale_test = false)
|
||||
{
|
||||
// use a seed user so it does not have to be known which file to
|
||||
// include the User class from
|
||||
$this->_user = $seed_user;
|
||||
$this->_large_scale_test = $large_scale_test;
|
||||
}
|
||||
|
||||
/**
|
||||
*
|
||||
*/
|
||||
function create_demo_data()
|
||||
{
|
||||
global $current_language;
|
||||
global $sugar_demodata;
|
||||
foreach($sugar_demodata['users'] as $v)
|
||||
{
|
||||
$this->_create_seed_user($v['id'], $v['last_name'], $v['first_name'], $v['user_name'], $v['title'], $v['is_admin'], $v['reports_to'], $v['reports_to_name'], $v['email']);
|
||||
|
||||
}
|
||||
if($this->_large_scale_test) {
|
||||
$user_list = $this->_seed_data_get_user_list();
|
||||
foreach($user_list as $user_name)
|
||||
{
|
||||
$this->_quick_create_user($user_name);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Create a user in the seed data.
|
||||
*/
|
||||
function _create_seed_user($id, $last_name, $first_name, $user_name,
|
||||
$title, $is_admin, $reports_to, $reports_to_name, $email)
|
||||
{
|
||||
$u = new User();
|
||||
|
||||
$u->id=$id;
|
||||
$u->new_with_id = true;
|
||||
$u->last_name = $last_name;
|
||||
$u->first_name = $first_name;
|
||||
$u->user_name = $user_name;
|
||||
$u->title = $title;
|
||||
$u->status = 'Active';
|
||||
$u->employee_status = 'Active';
|
||||
$u->is_admin = $is_admin;
|
||||
//$u->user_password = $u->encrypt_password($user_name);
|
||||
$u->user_hash = strtolower(md5($user_name));
|
||||
$u->reports_to_id = $reports_to;
|
||||
$u->reports_to_name = $reports_to_name;
|
||||
//$u->email1 = $email;
|
||||
$u->emailAddress->addAddress($email, true);
|
||||
$u->emailAddress->addAddress("reply.".$email, false, true);
|
||||
$u->emailAddress->addAddress("alias.".$email);
|
||||
|
||||
// bug 15371 tyoung set a user preference so that Users/DetailView.php can find something without repeatedly querying the db in vain
|
||||
$u->setPreference('max_tabs','7');
|
||||
$u->savePreferencesToDB();
|
||||
|
||||
|
||||
$u->picture = $this->_copy_user_image($id);
|
||||
|
||||
$u->save();
|
||||
}
|
||||
|
||||
/**
|
||||
*
|
||||
*/
|
||||
function _seed_data_get_user_list()
|
||||
{
|
||||
$users = Array();
|
||||
//bug 28138 todo
|
||||
$users[] = "north";
|
||||
$users[] = "south";
|
||||
$users[] = "east";
|
||||
$users[] = "west";
|
||||
$users[] = "left";
|
||||
$users[] = "right";
|
||||
$users[] = "in";
|
||||
$users[] = "out";
|
||||
$users[] = "fly";
|
||||
$users[] = "walk";
|
||||
$users[] = "crawl";
|
||||
$users[] = "pivot";
|
||||
$users[] = "money";
|
||||
$users[] = "dinero";
|
||||
$users[] = "shadow";
|
||||
$users[] = "roof";
|
||||
$users[] = "sales";
|
||||
$users[] = "pillow";
|
||||
$users[] = "feather";
|
||||
|
||||
return $users;
|
||||
}
|
||||
|
||||
/**
|
||||
*
|
||||
*/
|
||||
function _quick_create_user($name)
|
||||
{
|
||||
global $sugar_demodata;
|
||||
if (!$this->_user->retrieve($name.'_id'))
|
||||
{
|
||||
$this->_create_seed_user("{$name}_id", $name, $name, $name,
|
||||
$sugar_demodata['users'][0]['title'], $sugar_demodata['users'][0]['is_admin'], "seed_jim_id", $sugar_demodata['users'][0]['last_name'].", ".$sugar_demodata['users'][0]['first_name'], $sugar_demodata['users'][0]['email']);
|
||||
}
|
||||
}
|
||||
|
||||
function _copy_user_image($id) {
|
||||
global $sugar_config;
|
||||
$picture_file = create_guid();
|
||||
$file = "include/images/".$id.".gif";
|
||||
$newfile = $sugar_config['upload_dir'].$picture_file;
|
||||
if (!copy($file, $newfile)) {
|
||||
global $app_strings;
|
||||
$GLOBALS['log']->fatal(string_format($app_strings['ERR_FILE_NOT_FOUND'], array($file)));
|
||||
|
||||
}
|
||||
return $picture_file;
|
||||
}
|
||||
|
||||
}
|
||||
?>
|
||||
Reference in New Issue
Block a user