2014-05-03 01:56:15 +00:00
|
|
|
<?php
|
|
|
|
/**
|
2014-05-03 23:48:08 +00:00
|
|
|
* Patch testing component for the Joomla! CMS
|
2014-05-03 01:56:15 +00:00
|
|
|
*
|
2017-01-21 19:54:53 +00:00
|
|
|
* @copyright Copyright (C) 2011 - 2012 Ian MacLennan, Copyright (C) 2013 - 2017 Open Source Matters, Inc. All rights reserved.
|
2014-05-03 01:56:15 +00:00
|
|
|
* @license GNU General Public License version 2 or later
|
|
|
|
*/
|
|
|
|
|
2014-05-03 23:48:08 +00:00
|
|
|
namespace PatchTester;
|
2014-05-03 01:56:15 +00:00
|
|
|
|
2017-08-17 23:22:01 +00:00
|
|
|
use Joomla\CMS\Component\ComponentHelper;
|
|
|
|
use Joomla\CMS\Factory;
|
2014-05-03 02:02:38 +00:00
|
|
|
use Joomla\Registry\Registry;
|
2016-06-25 16:34:48 +00:00
|
|
|
use PatchTester\GitHub\GitHub;
|
2014-05-03 02:02:38 +00:00
|
|
|
|
2014-05-03 01:56:15 +00:00
|
|
|
/**
|
|
|
|
* Helper class for the patch tester component
|
|
|
|
*
|
2014-05-03 23:48:08 +00:00
|
|
|
* @since 2.0
|
2014-05-03 01:56:15 +00:00
|
|
|
*/
|
2014-05-03 23:48:08 +00:00
|
|
|
abstract class Helper
|
2014-05-03 01:56:15 +00:00
|
|
|
{
|
|
|
|
/**
|
2016-06-25 16:34:48 +00:00
|
|
|
* Initializes the GitHub object
|
2014-05-03 01:56:15 +00:00
|
|
|
*
|
2016-06-25 16:34:48 +00:00
|
|
|
* @return GitHub
|
2014-05-03 01:56:15 +00:00
|
|
|
*
|
|
|
|
* @since 2.0
|
|
|
|
*/
|
|
|
|
public static function initializeGithub()
|
|
|
|
{
|
2017-08-17 23:22:01 +00:00
|
|
|
$params = ComponentHelper::getParams('com_patchtester');
|
2014-05-03 01:56:15 +00:00
|
|
|
|
2014-05-03 02:02:38 +00:00
|
|
|
$options = new Registry;
|
2014-05-03 01:56:15 +00:00
|
|
|
|
2016-06-25 16:34:48 +00:00
|
|
|
// Set a user agent for the request
|
|
|
|
$options->set('userAgent', 'PatchTester/3.0');
|
|
|
|
|
|
|
|
// Set the default timeout to 120 seconds
|
|
|
|
$options->set('timeout', 120);
|
|
|
|
|
|
|
|
// Set the API URL
|
|
|
|
$options->set('api.url', 'https://api.github.com');
|
|
|
|
|
2014-05-03 01:56:15 +00:00
|
|
|
// If an API token is set in the params, use it for authentication
|
|
|
|
if ($params->get('gh_token', ''))
|
|
|
|
{
|
|
|
|
$options->set('gh.token', $params->get('gh_token', ''));
|
|
|
|
}
|
|
|
|
// Set the username and password if set in the params
|
|
|
|
elseif ($params->get('gh_user', '') && $params->get('gh_password'))
|
|
|
|
{
|
|
|
|
$options->set('api.username', $params->get('gh_user', ''));
|
|
|
|
$options->set('api.password', $params->get('gh_password', ''));
|
|
|
|
}
|
|
|
|
// Display a message about the lowered API limit without credentials
|
|
|
|
else
|
|
|
|
{
|
2017-08-17 23:22:01 +00:00
|
|
|
Factory::getApplication()->enqueueMessage(\JText::_('COM_PATCHTESTER_NO_CREDENTIALS'), 'notice');
|
2014-05-03 01:56:15 +00:00
|
|
|
}
|
|
|
|
|
2016-06-25 16:34:48 +00:00
|
|
|
return new GitHub($options);
|
2014-05-03 01:56:15 +00:00
|
|
|
}
|
|
|
|
}
|