getAllVersions() public method

public getAllVersions ( Updater $updater )
$updater Piwik\Updater
Example #1
0
 /**
  * @dataProvider getCoreDimensionsForGetAllVersionsTest
  */
 public function test_getAllVersions_ReturnsNoVersions_ForCoreDimensions_ThatWereRefactored_AndHaveNoDbVersion($table, $columnName, $columnType)
 {
     $this->addDimensionsToTables();
     $this->addDimensionToTable($table, $columnName, $columnType);
     $updater = $this->getMockUpdater();
     $actualVersions = $this->columnsUpdater->getAllVersions($updater);
     $expectedVersions = array('log_visit.test_visit_col_1' => 'INTEGER(10) UNSIGNED NOT NULL', 'log_visit.test_visit_col_2' => 'VARCHAR(32) NOT NULL', 'log_link_visit_action.test_action_col_1' => 'VARCHAR(32) NOT NULL', 'log_link_visit_action.test_action_col_2' => 'INTEGER(10) UNSIGNED DEFAULT NULL', 'log_conversion.test_conv_col_1' => 'FLOAT DEFAULT NULL', 'log_conversion.test_conv_col_2' => 'VARCHAR(32) NOT NULL');
     $this->assertEquals($actualVersions, $expectedVersions);
 }
Example #2
0
 /**
  * Returns any updates that should occur for core and all plugins that are both loaded and
  * installed. Also includes updates required for dimensions.
  *
  * @return string[]|null Returns the result of `getComponentsWithUpdateFile()`.
  */
 public function getComponentUpdates()
 {
     $componentsToCheck = array('core' => Version::VERSION);
     $manager = \Piwik\Plugin\Manager::getInstance();
     $plugins = $manager->getLoadedPlugins();
     foreach ($plugins as $pluginName => $plugin) {
         if ($manager->isPluginInstalled($pluginName)) {
             $componentsToCheck[$pluginName] = $plugin->getVersion();
         }
     }
     $columnsVersions = $this->columnsUpdater->getAllVersions($this);
     foreach ($columnsVersions as $component => $version) {
         $componentsToCheck[$component] = $version;
     }
     $componentsWithUpdateFile = $this->getComponentsWithUpdateFile($componentsToCheck);
     if (count($componentsWithUpdateFile) == 0) {
         $this->columnsUpdater->onNoUpdateAvailable($columnsVersions);
         if (!$this->hasNewVersion('core')) {
             return null;
         }
     }
     return $componentsWithUpdateFile;
 }
Example #3
0
 public static function getComponentUpdates(Updater $updater)
 {
     $updater->addComponentToCheck('core', Version::VERSION);
     $manager = \Piwik\Plugin\Manager::getInstance();
     $plugins = $manager->getLoadedPlugins();
     foreach ($plugins as $pluginName => $plugin) {
         if ($manager->isPluginInstalled($pluginName)) {
             $updater->addComponentToCheck($pluginName, $plugin->getVersion());
         }
     }
     $columnsVersions = ColumnsUpdater::getAllVersions();
     foreach ($columnsVersions as $component => $version) {
         $updater->addComponentToCheck($component, $version);
     }
     $componentsWithUpdateFile = $updater->getComponentsWithUpdateFile();
     if (count($componentsWithUpdateFile) == 0) {
         ColumnsUpdater::onNoUpdateAvailable($columnsVersions);
         if (!$updater->hasNewVersion('core')) {
             return null;
         }
     }
     return $componentsWithUpdateFile;
 }