31
0
mirror of https://github.com/joomla-extensions/patchtester.git synced 2024-09-21 01:09:01 +00:00
patchtester/administrator/components/com_patchtester/models/pulls.php

231 lines
5.5 KiB
PHP
Raw Normal View History

2011-10-11 13:02:57 +00:00
<?php
/**
2012-06-12 18:42:45 +00:00
* @package PatchTester
* @copyright Copyright (C) 2011 Ian MacLennan, Inc. All rights reserved.
* @license GNU General Public License version 2 or later; see LICENSE.txt
2011-10-11 13:02:57 +00:00
*/
defined('_JEXEC') or die;
jimport('joomla.application.component.modellist');
/**
* Methods supporting a list of pull request.
*
2012-06-12 18:42:45 +00:00
* @package PatchTester
2011-10-11 13:02:57 +00:00
*/
class PatchtesterModelPulls extends JModelList
{
2013-07-13 00:31:00 +00:00
/**
* Github object
*
* @var PTGithub
*/
protected $github;
/**
* Object containing the rate limit data
*
* @var object
*/
protected $rate;
2011-10-11 13:02:57 +00:00
/**
* Constructor.
*
2012-06-12 18:42:45 +00:00
* @param array $config An optional associative array of configuration settings.
*
* @see JController
* @since 11.1
2011-10-11 13:02:57 +00:00
*/
public function __construct($config = array())
{
2012-06-12 18:42:45 +00:00
if (empty($config['filter_fields']))
{
2011-10-11 13:02:57 +00:00
$config['filter_fields'] = array(
'id', 'id',
'title', 'title',
'updated_at', 'updated_at',
'user', 'user'
);
}
parent::__construct($config);
2013-07-13 00:31:00 +00:00
// Set up the Github object
2013-07-13 01:06:39 +00:00
$params = JComponentHelper::getParams('com_patchtester');
$options = new JRegistry;
// Set the username and password if set in the params
if ($params->get('gh_user', '') && $params->get('gh_password'))
{
$options->set('api.username', $params->get('gh_user', ''));
$options->set('api.password', $params->get('gh_password', ''));
}
else
{
// Display a message about the lowered API limit without credentials
JFactory::getApplication()->enqueueMessage(JText::_('COM_PATCHTESTER_NO_CREDENTIALS'), 'notice');
}
$this->github = new PTGithub($options);
2013-07-13 00:31:00 +00:00
// Store the rate data for reuse during this request cycle
$this->rate = $this->github->account->getRateLimit()->rate;
// Check the API rate limit, display a message if over
if ($this->rate->remaining == 0)
{
2013-07-13 01:06:39 +00:00
JFactory::getApplication()->enqueueMessage(JText::sprintf('COM_PATCHTESTER_API_LIMIT_LIST', JFactory::getDate($this->rate->reset)), 'notice');
2013-07-13 00:31:00 +00:00
}
2011-10-11 13:02:57 +00:00
}
/**
* Method to auto-populate the model state.
*
* Note. Calling getState in this method will result in recursion.
*
2012-06-12 18:42:45 +00:00
* @since 1.6
2011-10-11 13:02:57 +00:00
*/
protected function populateState($ordering = null, $direction = null)
{
2011-10-13 17:58:22 +00:00
// Load the filter state.
2012-06-12 18:42:45 +00:00
$search = $this->getUserStateFromRequest($this->context . '.filter.search', 'filter_search');
2011-10-13 17:58:22 +00:00
$this->setState('filter.search', $search);
2012-06-12 18:42:45 +00:00
$searchId = $this->getUserStateFromRequest($this->context . '.filter.searchid', 'filter_searchid');
2011-10-15 07:10:25 +00:00
$this->setState('filter.searchid', $searchId);
2012-09-09 01:53:44 +00:00
// Load the parameters.
$params = JComponentHelper::getParams('com_patchtester');
2011-10-13 17:58:22 +00:00
2012-09-09 01:53:44 +00:00
$this->setState('params', $params);
$this->setState('github_user', $params->get('org', 'joomla'));
$this->setState('github_repo', $params->get('repo', 'joomla-cms'));
2011-10-13 17:58:22 +00:00
2012-09-09 01:53:44 +00:00
// List state information.
parent::populateState('number', 'desc');
2013-07-13 00:31:00 +00:00
// GitHub's default list limit is 30
$this->setState('list.limit', 30);
2011-10-11 13:02:57 +00:00
}
public function getAppliedPatches()
{
$query = $this->_db->getQuery(true);
$query->select('*');
2012-06-12 18:42:45 +00:00
$query->from('#__patchtester_tests');
2011-10-11 13:02:57 +00:00
$query->where('applied = 1');
2011-10-13 17:58:22 +00:00
2011-10-11 13:02:57 +00:00
$this->_db->setQuery($query);
$tests = $this->_db->loadObjectList('pull_id');
return $tests;
}
public function getItems()
{
2012-06-12 18:42:45 +00:00
if ($this->getState('github_user') == '' || $this->getState('github_repo') == '')
{
2011-10-11 13:02:57 +00:00
return array();
}
2011-10-13 17:58:22 +00:00
$this->ordering = $this->getState('list.ordering', 'title');
$this->orderDir = $this->getState('list.direction', 'asc');
$search = $this->getState('filter.search');
2011-10-15 07:10:25 +00:00
$searchId = $this->getState('filter.searchid');
2011-10-13 17:58:22 +00:00
2012-09-09 01:53:44 +00:00
$page = $this->getPagination()->pagesCurrent;
2012-06-12 18:42:45 +00:00
try
{
2013-07-13 00:31:00 +00:00
// If over the API limit, we can't build this list
// TODO - Cache the request data in case of API limiting
if ($this->rate->remaining > 0)
{
2013-07-13 00:31:00 +00:00
$pulls = $this->github->pulls->getList($this->getState('github_user'), $this->getState('github_repo'), 'open', $page);
usort($pulls, array($this, 'sortItems'));
2012-06-12 18:42:45 +00:00
2013-07-13 00:31:00 +00:00
foreach ($pulls as $i => &$pull)
2012-06-12 18:42:45 +00:00
{
2013-07-13 00:31:00 +00:00
if ($search && false === strpos($pull->title, $search))
{
unset($pulls[$i]);
continue;
}
2012-06-12 18:42:45 +00:00
2013-07-13 00:31:00 +00:00
if ($searchId && $pull->number != $searchId)
{
unset($pulls[$i]);
continue;
}
2012-06-12 18:42:45 +00:00
2013-07-13 00:31:00 +00:00
// Try to find a joomlacode issue number
$pulls[$i]->joomlacode_issue = 0;
2012-06-12 18:42:45 +00:00
2013-07-13 00:31:00 +00:00
$matches = array();
2012-06-12 18:42:45 +00:00
2013-07-13 00:31:00 +00:00
preg_match('#\[\#([0-9]+)\]#', $pull->title, $matches);
2012-06-12 18:42:45 +00:00
if (isset($matches[1]))
{
2013-07-13 00:31:00 +00:00
$pulls[$i]->joomlacode_issue = (int) $matches[1];
}
else
{
preg_match('#(http://joomlacode[-\w\./\?\S]+)#', $pull->body, $matches);
2012-06-12 18:42:45 +00:00
if (isset($matches[1]))
{
2013-07-13 00:31:00 +00:00
preg_match('#tracker_item_id=([0-9]+)#', $matches[1], $matches);
if (isset($matches[1]))
{
$pulls[$i]->joomlacode_issue = (int) $matches[1];
}
2012-06-12 18:42:45 +00:00
}
}
}
2011-10-13 17:58:22 +00:00
}
2013-07-13 00:31:00 +00:00
else
{
$pulls = array();
}
return $pulls;
2012-06-12 18:42:45 +00:00
}
catch (Exception $e)
{
2011-10-15 18:13:31 +00:00
JFactory::getApplication()->enqueueMessage($e->getMessage(), 'error');
return array();
}
2011-10-11 13:02:57 +00:00
}
public function sortItems($a, $b)
{
2011-10-13 17:58:22 +00:00
switch ($this->ordering)
{
case 'title' :
return ($this->orderDir == 'asc') ? strcasecmp($a->title, $b->title) : strcasecmp($b->title, $a->title);
case 'number' :
default :
2012-06-12 18:42:45 +00:00
return ($this->orderDir == 'asc') ? $b->number < $a->number : $b->number > $a->number;
2011-10-13 17:58:22 +00:00
}
2011-10-11 13:02:57 +00:00
}
2012-09-09 01:53:44 +00:00
public function getTotal()
{
2013-07-13 00:31:00 +00:00
if ($this->rate->remaining > 0)
{
return $this->github->repos->get('joomla', 'joomla-cms')->open_issues_count;
}
else
{
return 0;
}
2012-09-09 01:53:44 +00:00
}
2011-10-11 13:02:57 +00:00
}