CommunityID/utilities/generateRandomHistory.php

66 lines
1.7 KiB
PHP
Raw Normal View History

2019-07-17 20:08:50 +00:00
<?php
/*
* @copyright Copyright (C) 2005-2009 Keyboard Monkeys Ltd. http://www.kb-m.com
* @license http://creativecommons.org/licenses/BSD/ BSD License
* @author Keyboard Monkey Ltd
* @since CommunityID 0.9
* @package CommunityID
* @packager Keyboard Monkeys
*/
/**
* This scripts creates fake entries in the history table
*/
define('APP_DIR', dirname(__FILE__) . '/..');
/**
* Number of entries to create
*/
define('NUM_ENTRIES', 3000);
require APP_DIR . '/Setup.php';
Setup::setIncludePath();
Setup::setAutoLoader();
Setup::setConfig();
Setup::setLogger();
Setup::setDatabase();
class GenerateRandomHistory
{
private $_names;
private $_numNames;
public function __construct()
{
$this->_words = file(dirname(__FILE__).'/../libs/Monkeys/tests/words.txt');
$this->_numWords= count($this->_words);
}
public function generate()
{
$histories = new Histories();
$stats = new Stats();
$userIds = $stats->getAllTestUsersIds();
$numUsers = count($userIds);
for ($i = 0; $i < NUM_ENTRIES; $i++) {
$history = $histories->createRow();
$history->user_id = $userIds[rand(0, $numUsers - 1)]['id'];
$history->date = date('Y-m-d H:i:s', time() - rand(0, 365) * 24 * 60 * 60);
$history->site = 'http://' . strtolower(trim($this->_words[rand(0, $this->_numWords)])) . '.com/'
. strtolower(trim($this->_words[rand(0, $this->_numWords)]));
$history->ip = rand(1, 255) . '.' . rand(1, 255) . '.' . rand(1, 255) . '.' . rand(1, 255);
$history->result = History::AUTHORIZED;
$history->save();
}
}
}
$generate = new GenerateRandomHistory();
$generate->generate();