/**
  * Edit profile
  *
  *@return redirect
  */
 function postEditProfile()
 {
     $id = Input::get('id');
     $rules = array('company_name' => 'required|min:2', 'first_name' => 'required|min:2', 'last_name' => 'required|min:2', 'email' => 'required|email|unique:profiles,email,' . $id, 'password' => 'min:5', 'company_name' => 'required|min:2', 'address' => 'required|min:2', 'phone_number' => 'required|min:5', 'mobile' => 'required|min:5', 'country' => 'required', 'city' => 'required|min:2', 'passport_img' => 'mimes:jpg,png,gif', 'id_img' => 'mimes:jpg,png,gif', 'driving_img' => 'mimes:jpg,png,gif', 'bill_img' => 'mimes:jpg,png,gif');
     $validator = Validator::make(Input::all(), $rules);
     if ($validator->passes()) {
         $company_name = Input::get('company_name');
         $first_name = Input::get('first_name');
         $last_name = Input::get('last_name');
         $email = Input::get('email');
         $password = Input::get('password');
         $address = Input::get('address');
         $phone1 = Input::get('phone_number');
         $phone2 = Input::get('phone_number2');
         $mobile = Input::get('mobile');
         $website = Input::get('website');
         $country = Input::get('country');
         $city = Input::get('city');
         $update = ['company_name' => $company_name, 'first_name' => $first_name, 'last_name' => $last_name, 'email' => $email, 'address' => $address, 'phone1' => $phone1, 'phone2' => $phone2, 'mobile' => $mobile, 'website' => $website, 'country' => $country, 'city' => $city];
         if (Input::file('passport_img')) {
             $update['passport_img'] = 'passport_img.jpg';
         }
         if (Input::file('id_img')) {
             $update['id_img'] = 'id_img.jpg';
         }
         if (Input::file('driving_img')) {
             $update['driving_img'] = 'driving_img.jpg';
         }
         if (Input::file('bill_img')) {
             $update['bill_img'] = 'bill_img.jpg';
         }
         if ($password != '') {
             $update['password'] = sha1($password);
         }
         ProfileModel::updateProfile($id, $update);
         $update2 = ['email' => $email];
         if ($password != '') {
             $update2['password'] = sha1($password);
         }
         ProfileModel::updateVendor($id, $update2);
         Upload::uploadPassport($id);
         Upload::uploadID($id);
         Upload::uploadDrivingLicense($id);
         Upload::uploadUtilityBil($id);
         return Redirect::to('/profile')->with('s_msg', 'Profile information updated!');
     }
     return Redirect::to('/profile')->with('e_msg', 'Something went wrong!')->withErrors($validator)->withInput();
 }
Exemple #2
0
/**
 * Upgrades a Version 19 version of the Yioop! database to a Version 20 version
 * This is a major upgrade as the user table have changed. This also acts
 * as a cumulative since version 0.98. It involves a web form that has only
 * been localized to English
 * @param object $db datasource to use to upgrade
 */
function upgradeDatabaseVersion20(&$db)
{
    if (!isset($_REQUEST['v20step'])) {
        $_REQUEST['v20step'] = 1;
    }
    $upgrade_check_file = WORK_DIRECTORY . "/v20check.txt";
    if (!file_exists($upgrade_check_file)) {
        $upgrade_password = substr(sha1(microtime() . AUTH_KEY), 0, 8);
        file_put_contents($upgrade_check_file, $upgrade_password);
    } else {
        $v20check = trim(file_get_contents($upgrade_check_file));
        if (isset($_REQUEST['v20step']) && $_REQUEST['v20step'] == 2 && (!isset($_REQUEST['upgrade_code']) || $v20check != trim($_REQUEST['upgrade_code']))) {
            $_REQUEST['v20step'] = 1;
            $data['SCRIPT'] = "doMessage('<h1 class=\"red\" >" . "v20check.txt not typed in correctly!</h1>')";
        }
    }
    switch ($_REQUEST['v20step']) {
        case "2":
            /** Get base class for profile_model.php*/
            require_once BASE_DIR . "/models/model.php";
            /** For ProfileModel::createDatabaseTables method */
            require_once BASE_DIR . "/models/profile_model.php";
            /** For UserModel::addUser method */
            require_once BASE_DIR . "/models/user_model.php";
            $profile_model = new ProfileModel(DB_NAME, false);
            $profile_model->db = $db;
            $save_tables = array("ACTIVE_FETCHER", "CURRENT_WEB_INDEX", "FEED_ITEM", "MACHINE", "MEDIA_SOURCE", "SUBSEARCH", "VERSION");
            $dbinfo = array("DBMS" => DBMS, "DB_HOST" => DB_HOST, "DB_USER" => DB_USER, "DB_PASSWORD" => DB_PASSWORD, "DB_NAME" => DB_NAME);
            $creation_time = microTimestamp();
            $profile = $profile_model->getProfile(WORK_DIRECTORY);
            $new_profile = $profile;
            $new_profile['AUTHENTICATION_MODE'] = NORMAL_AUTHENTICATION;
            $new_profile['FIAT_SHAMIR_MODULUS'] = generateFiatShamirModulus();
            $new_profile['MAIL_SERVER'] = "";
            $new_profile['MAIL_PORT'] = "";
            $new_profile['MAIL_USERNAME'] = "";
            $new_profile['MAIL_PASSWORD'] = "";
            $new_profile['MAIL_SECURITY'] = "";
            $new_profile['REGISTRATION_TYPE'] = 'disable_registration';
            $new_profile['USE_MAIL_PHP'] = true;
            $new_profile['WORD_SUGGEST'] = true;
            $profile_model->updateProfile(WORK_DIRECTORY, $new_profile, $profile);
            //get current users (assume can fit in memory and doesn't take long)
            $users = array();
            $sha1_of_upgrade_code = bchexdec(sha1($v20check));
            $temp = bcpow($sha1_of_upgrade_code . '', '2');
            $zkp_password = bcmod($temp, $new_profile['FIAT_SHAMIR_MODULUS']);
            $user_tables_sql = array("SELECT USER_NAME FROM USER", "SELECT USER_NAME, FIRST_NAME, LAST_NAME, EMAIL FROM USERS");
            $i = 0;
            foreach ($user_tables_sql as $sql) {
                $result = $db->execute($sql);
                if ($result) {
                    while ($users[$i] = $db->fetchArray($result)) {
                        $setup_user_fields = array();
                        if ($users[$i]["USER_NAME"] == "root" || $users[$i]["USER_NAME"] == "public") {
                            continue;
                        }
                        $users[$i]["FIRST_NAME"] = isset($users[$i]["FIRST_NAME"]) ? $users[$i]["FIRST_NAME"] : "FIRST_{$i}";
                        $users[$i]["LAST_NAME"] = isset($users[$i]["LAST_NAME"]) ? $users[$i]["LAST_NAME"] : "LAST_{$i}";
                        $users[$i]["EMAIL"] = isset($users[$i]["EMAIL"]) ? $users[$i]["EMAIL"] : "user{$i}@dev.null";
                        /* although not by default using zkp set up so
                              accounts would work on switch
                           */
                        $users[$i]["PASSWORD"] = $v20check;
                        $users[$i]["STATUS"] = INACTIVE_STATUS;
                        $users[$i]["CREATION_TIME"] = $creation_time;
                        $users[$i]["UPS"] = 0;
                        $users[$i]["DOWNS"] = 0;
                        $users[$i]["ZKP_PASSWORD"] = $zkp_password;
                        $i++;
                    }
                    unset($users[$i]);
                    $result = NULL;
                }
            }
            $dbinfo = array("DBMS" => DBMS, "DB_HOST" => DB_HOST, "DB_USER" => DB_USER, "DB_PASSWORD" => DB_PASSWORD, "DB_NAME" => DB_NAME);
            $profile_model->initializeSql($db, $dbinfo);
            $database_tables = array_diff(array_keys($profile_model->create_statements), $save_tables);
            $database_tables = array_merge($database_tables, array("BLOG_DESCRIPTION", "USER_OLD", "ACCESS"));
            foreach ($database_tables as $table) {
                if (!in_array($table, $save_tables)) {
                    $db->execute("DROP TABLE " . $table);
                }
            }
            if ($profile_model->migrateDatabaseIfNecessary($dbinfo, $save_tables)) {
                $user_model = new UserModel(DB_NAME, false);
                $user_model->db = $db;
                foreach ($users as $user) {
                    $user_model->addUser($user["USER_NAME"], $user["PASSWORD"], $user["FIRST_NAME"], $user["LAST_NAME"], $user["EMAIL"], $user["STATUS"], $user["ZKP_PASSWORD"]);
                }
                $user = array();
                $user['USER_ID'] = ROOT_ID;
                $user['PASSWORD'] = $v20check;
                $user["ZKP_PASSWORD"] = $zkp_password;
                $user_model->updateUser($user);
                $db->execute("DELETE FROM VERSION WHERE ID < 19");
                $db->execute("UPDATE VERSION SET ID=20 WHERE ID=19");
                return;
            }
            $data['SCRIPT'] = "doMessage('<h1 class=\"red\" >" . "Couldn't migrate database tables from defaults!</h1>')";
        case "1":
        default:
            ?>
            <!DOCTYPE html>
            <html lang='en-US'>
            <head>
            <title>Yioop Upgrade Detected</title>
            <meta name="ROBOTS" content="NOINDEX,NOFOLLOW" />
            <meta name="Author" content="Christopher Pollett" />
            <meta charset="utf-8" />
            <?php 
            if (MOBILE) {
                ?>
            <meta name="viewport" content="width=device-width, initial-scale=1">
            <?php 
            }
            ?>
            <link rel="stylesheet" type="text/css"
                 href="<?php 
            e(BASE_URL);
            ?>
/css/search.css" />
            </head>
            <body class="html-ltr <?php 
            if (MOBILE) {
                e('mobile');
            }
            ?>
" >
            <div id="message" ></div>
            <div class='small-margin-current-activity'>
            <h1 class='center green'>Yioop Upgrade Detected!</h1>
            <p>Upgrading to Version 1 of Yioop from an earlier version
            is a major upgrade. The way passwords are stored and the
            organization of the Yioop database has changed. Here is
            what is preserved by this upgrade:</p>
            <ol>
            <li>Existing crawls and archive data.</li>
            <li>Machines known if this instance is a name server.</li>
            <li>Media sources and subsearches.</li>
            <li>Feed items.</li>
            </ol>
            <p>Here is what happens during the upgrade which might
            result in data loss:</p>
            <ol>
            <li>Root and user account passwords are changed to the contents of
            v20check.txt.</li>
            <li>User accounts other than root are marked as inactived,
            so will have tobe activated under Manage Users before that person
            can sign in.</li>
            <li>All roles except Admin and User are deleted. Root
            will be given Admin role, all other users will receive
            User role.</li>
            <li>All existing groups are deleted.</li>
            <li>Existing crawl mixes will be deleted.</li>
            <li>Any customized translations that begin with the prefix db_.
            Other still in use translations will be preserved.</li>
            </ol>
            <p>If given the above you don't want to upgrade, merely replace
            this folder with the contents of your old Yioop instance and
            you should be able to continue to use Yioop as before.</p>
            <p>If you decide to proceed with the upgrade, please back up
            both your existing database and work directory.</p>
            <form method="post" action="?">
            <p><label for="upgrade-code">
            <b>In the field below enter the string found in the file:<br />
            <span class="green"><?php 
            e(WORK_DIRECTORY . "/v20check.txt");
            ?>
</span>
            </b></label></p>
            <input id='upgrade-code' class="extra-wide-field"
                name="upgrade_code" type="text" />
            <input type="hidden" name="v20step" value="2" />
            <button class="button-box" type="submit">Upgrade</button>
            </form>
            <?php 
            break;
    }
    ?>
    </div>
    <script type="text/javascript" src="<?php 
    e(BASE_URL);
    ?>
/scripts/basic.js" ></script>
    <script type="text/javascript" >
    <?php 
    if (isset($data['SCRIPT'])) {
        e($data['SCRIPT']);
    }
    ?>
</script>
    </body>
    </html>
   <?php 
    exit;
}