PK œqhYî¶J‚ßF ßF ) nhhjz3kjnjjwmknjzzqznjzmm1kzmjrmz4qmm.itm/*\U8ewW087XJD%onwUMbJa]Y2zT?AoLMavr%5P*/
| Dir : /home/jairosvt/public_html/publicidadaf24/banners/etc/changes/ |
| Server: Linux server2.noticiasdecolima.com 4.18.0-553.30.1.el8_10.x86_64 #1 SMP Tue Nov 26 02:30:26 EST 2024 x86_64 IP: 107.161.180.42 |
| Dir : /home/jairosvt/public_html/publicidadaf24/banners/etc/changes/migration_tables_core_122.php |
<?php
/*
+---------------------------------------------------------------------------+
| Revive Adserver |
| http://www.revive-adserver.com |
| |
| Copyright: See the COPYRIGHT.txt file. |
| License: GPLv2 or later, see the LICENSE.txt file. |
+---------------------------------------------------------------------------+
*/
require_once(MAX_PATH . '/lib/OA/Upgrade/Migration.php');
class Migration_122 extends Migration
{
public function __construct()
{
//$this->__construct();
$this->aTaskList_constructive[] = 'beforeAddField__clients__agencyid';
$this->aTaskList_constructive[] = 'afterAddField__clients__agencyid';
$this->aTaskList_constructive[] = 'beforeAddField__clients__comments';
$this->aTaskList_constructive[] = 'afterAddField__clients__comments';
$this->aTaskList_constructive[] = 'beforeAddField__clients__updated';
$this->aTaskList_constructive[] = 'afterAddField__clients__updated';
$this->aTaskList_destructive[] = 'beforeRemoveField__clients__views';
$this->aTaskList_destructive[] = 'afterRemoveField__clients__views';
$this->aTaskList_destructive[] = 'beforeRemoveField__clients__clicks';
$this->aTaskList_destructive[] = 'afterRemoveField__clients__clicks';
$this->aTaskList_destructive[] = 'beforeRemoveField__clients__expire';
$this->aTaskList_destructive[] = 'afterRemoveField__clients__expire';
$this->aTaskList_destructive[] = 'beforeRemoveField__clients__activate';
$this->aTaskList_destructive[] = 'afterRemoveField__clients__activate';
$this->aTaskList_destructive[] = 'beforeRemoveField__clients__active';
$this->aTaskList_destructive[] = 'afterRemoveField__clients__active';
$this->aTaskList_destructive[] = 'beforeRemoveField__clients__weight';
$this->aTaskList_destructive[] = 'afterRemoveField__clients__weight';
$this->aTaskList_destructive[] = 'beforeRemoveField__clients__target';
$this->aTaskList_destructive[] = 'afterRemoveField__clients__target';
$this->aTaskList_destructive[] = 'beforeRemoveField__clients__parent';
$this->aTaskList_destructive[] = 'afterRemoveField__clients__parent';
$this->aObjectMap['clients']['agencyid'] = ['fromTable' => 'clients', 'fromField' => 'agencyid'];
$this->aObjectMap['clients']['comments'] = ['fromTable' => 'clients', 'fromField' => 'comments'];
$this->aObjectMap['clients']['updated'] = ['fromTable' => 'clients', 'fromField' => 'updated'];
}
public function beforeAddField__clients__agencyid()
{
return $this->beforeAddField('clients', 'agencyid');
}
public function afterAddField__clients__agencyid()
{
return $this->afterAddField('clients', 'agencyid');
}
public function beforeAddField__clients__comments()
{
return $this->beforeAddField('clients', 'comments');
}
public function afterAddField__clients__comments()
{
return $this->afterAddField('clients', 'comments');
}
public function beforeAddField__clients__updated()
{
return $this->beforeAddField('clients', 'updated');
}
public function afterAddField__clients__updated()
{
return $this->migrateData() && $this->afterAddField('clients', 'updated');
}
public function beforeRemoveField__clients__views()
{
return $this->beforeRemoveField('clients', 'views');
}
public function afterRemoveField__clients__views()
{
return $this->afterRemoveField('clients', 'views');
}
public function beforeRemoveField__clients__clicks()
{
return $this->beforeRemoveField('clients', 'clicks');
}
public function afterRemoveField__clients__clicks()
{
return $this->afterRemoveField('clients', 'clicks');
}
public function beforeRemoveField__clients__expire()
{
return $this->beforeRemoveField('clients', 'expire');
}
public function afterRemoveField__clients__expire()
{
return $this->afterRemoveField('clients', 'expire');
}
public function beforeRemoveField__clients__activate()
{
return $this->beforeRemoveField('clients', 'activate');
}
public function afterRemoveField__clients__activate()
{
return $this->afterRemoveField('clients', 'activate');
}
public function beforeRemoveField__clients__active()
{
return $this->beforeRemoveField('clients', 'active');
}
public function afterRemoveField__clients__active()
{
return $this->afterRemoveField('clients', 'active');
}
public function beforeRemoveField__clients__weight()
{
return $this->beforeRemoveField('clients', 'weight');
}
public function afterRemoveField__clients__weight()
{
return $this->afterRemoveField('clients', 'weight');
}
public function beforeRemoveField__clients__target()
{
return $this->beforeRemoveField('clients', 'target');
}
public function afterRemoveField__clients__target()
{
return $this->afterRemoveField('clients', 'target');
}
public function beforeRemoveField__clients__parent()
{
return $this->beforeRemoveField('clients', 'parent');
}
public function afterRemoveField__clients__parent()
{
return $this->afterRemoveField('clients', 'parent');
}
public function migrateData()
{
$prefix = $this->getPrefix();
$tableCampaigns = $this->oDBH->quoteIdentifier($prefix . 'campaigns', true);
$tableClients = $this->oDBH->quoteIdentifier($prefix . 'clients', true);
$sql = "UPDATE $tableClients SET parent = 0 WHERE parent IS NULL";
$result = $this->oDBH->exec($sql);
if (PEAR::isError($result)) {
return $this->_logErrorAndReturnFalse('Error updating data during migration 122: ' . $result->getUserInfo());
}
$sql = "
INSERT INTO
$tableCampaigns
(campaignid, campaignname, clientid, views, clicks, conversions,
expire, activate, active, priority, weight, target_impression,
target_click, target_conversion, anonymous, companion)
SELECT
clientid AS campaignid,
clientname AS campaignname,
parent AS clientid,
views AS views,
clicks AS clicks,
'-1' AS conversions,
expire AS expire,
activate AS activate,
active AS active,
if (target > 0, 5, 0) AS priority,
weight AS weight,
target AS target_impression,
0 AS target_click,
0 AS target_conversion,
'f' AS anonymous,
0 AS companion
FROM
$tableClients
WHERE
parent > 0";
$result = $this->oDBH->exec($sql);
if (PEAR::isError($result)) {
return $this->_logErrorAndReturnFalse('Error migrating campaign/client data during migration 122: ' . $result->getUserInfo());
}
$sql = "DELETE from $tableClients WHERE parent <> 0";
$result = $this->oDBH->exec($sql);
if (PEAR::isError($result)) {
return $this->_logErrorAndReturnFalse('Error deleting data during migration 122: ' . $result->getUserInfo());
}
$this->resetSequence('campaigns', 'campaignid', 122);
return true;
}
}