summaryrefslogtreecommitdiffstats
path: root/class
diff options
context:
space:
mode:
authorRemi Collet <fedora@famillecollet.com>2014-05-15 09:28:35 +0200
committerRemi Collet <fedora@famillecollet.com>2014-05-15 09:28:35 +0200
commitd84a48e948b80ecca27e6b8d9e301a1489f33647 (patch)
tree545bfa05b80ad94c38375661383fbd35d53ca1bd /class
parent01deba7406b28fb5c7d7a2bc5a9b1b9ae954009e (diff)
pkgdb2 compatibility, ++, bump fedpkg cli version to 0.3.0-dev
Diffstat (limited to 'class')
-rw-r--r--class/CommonTable.php4
-rw-r--r--class/FedoraClient.php6
-rw-r--r--class/FedoraPkgdb.php42
-rw-r--r--class/Parser.php4
-rw-r--r--class/TableAcls.php4
-rw-r--r--class/TableIterator.php4
-rw-r--r--class/TablePearRepo.php4
-rw-r--r--class/TableRRepo.php4
-rw-r--r--class/TableRpm.php4
-rw-r--r--class/TableRpmRepo.php4
-rw-r--r--class/TableUpstream.php4
11 files changed, 43 insertions, 41 deletions
diff --git a/class/CommonTable.php b/class/CommonTable.php
index 365ef19..ab06cfd 100644
--- a/class/CommonTable.php
+++ b/class/CommonTable.php
@@ -4,7 +4,7 @@
*
* PHP version 5
*
- * Copyright © 2010 Remi Collet
+ * Copyright © 2010-2014 Remi Collet
*
* This file is part of rpmphp.
*
@@ -26,7 +26,7 @@
*
* @author Remi Collet <unknown@unknwown.com>
* @author Johan Cwiklinski <johan@x-tnd.be>
- * @copyright 2010 Remi Collet
+ * @copyright 2010-2014 Remi Collet
* @license http://www.gnu.org/licenses/agpl-3.0-standalone.html AGPL License 3.0 or (at your option) any later version
* @link http://github.com/remicollet/rpmphp/
* @since The begining of times.
diff --git a/class/FedoraClient.php b/class/FedoraClient.php
index 4071348..a356a9b 100644
--- a/class/FedoraClient.php
+++ b/class/FedoraClient.php
@@ -7,7 +7,7 @@
*
* PHP version 5
*
- * Copyright (C) 2010 Remi Collet
+ * Copyright (C) 2010-2014 Remi Collet
* http://github.com/remicollet/rpmphp.
*
* Inspired from python-fedora
@@ -29,7 +29,7 @@
*
* @author Remi Collet <remi@fedoraproject.org>
* @author Johan Cwiklinski <johan@x-tnd.be>
- * @copyright 2010-2013 Remi Collet
+ * @copyright 2010-2014 Remi Collet
* @license http://www.gnu.org/licenses/lgpl-2.1.txt LGPL License 2.1 or (at your option) any later version
* @link http://github.com/remicollet/rpmphp/
* @since The begining of times.
@@ -42,7 +42,7 @@ require_once 'Cache/Lite.php';
abstract class FedoraClient
{
- const VERSION='0.2.0-dev';
+ const VERSION='0.3.0-dev';
protected $url;
private $_agent;
private $_debug = 0;
diff --git a/class/FedoraPkgdb.php b/class/FedoraPkgdb.php
index 1650493..afe7adc 100644
--- a/class/FedoraPkgdb.php
+++ b/class/FedoraPkgdb.php
@@ -7,7 +7,7 @@
*
* PHP version 5
*
- * Copyright (C) 2010-2013 Remi Collet
+ * Copyright (C) 2010-2014 Remi Collet
* http://github.com/remicollet/rpmphp.
*
* Inspired from python-fedora
@@ -29,7 +29,7 @@
*
* @author Remi Collet <remi@fedoraproject.org>
* @author Johan Cwiklinski <johan@x-tnd.be>
- * @copyright 2010-2013 Remi Collet
+ * @copyright 2010-2014 Remi Collet
* @license http://www.gnu.org/licenses/lgpl-2.1.txt LGPL License 2.1 or (at your option) any later version
* @link http://github.com/remicollet/rpmphp/
* @since The begining of times.
@@ -46,7 +46,7 @@ class FedoraPkgdb extends FedoraClient
} else {
$server = 'admin.fedoraproject.org';
}
- parent::__construct("http://$server/api/", $options);
+ parent::__construct("https://$server/pkgdb/api/", $options);
$rep = $this->cache->get(__METHOD__, $this->url);
if ($rep!==false) {
@@ -109,21 +109,13 @@ class FedoraPkgdb extends FedoraClient
function getPackageInfo($name, $refresh=false)
{
- if ($this->_version > 0) {
- $url='package/acl/get/'.urlencode($name);
- $rep = ($refresh ? false : $this->cache->get(__METHOD__, $this->url.$url));
- if ($rep) {
- $this->logDebug(2, __METHOD__."($name) get from cache");
- } else {
- $rep =$this->sendRequest($url);
- $this->cache->save($rep, __METHOD__, $this->url.$url);
- $this->logDebug(2, __METHOD__."($name) save to cache");
- }
- $this->logDebug(8, print_r($rep, true));
- return false;
- }
-
- $url='acls/name/'.urlencode($name);
+ static $convert=array(
+ 'master' => 'devel',
+ 'el5' => 'EL-5',
+ 'el6' => 'EL-6',
+ 'epel7' => 'EL-7',
+ );
+ $url='package/'.urlencode($name);
$rep = ($refresh ? false : $this->cache->get(__METHOD__, $this->url.$url));
if ($rep) {
$this->logDebug(2, __METHOD__."($name) get from cache");
@@ -139,8 +131,18 @@ class FedoraPkgdb extends FedoraClient
}
$this->logDebug(8, print_r($rep, true));
$branches = array();
- foreach ($rep['packageListings'] as $pack) {
- $branches[$pack['collection']['branchname']] = $pack;
+ foreach ($rep['packages'] as $pack) {
+ $n = $pack['collection']['branchname'];
+ if (isset($convert[$n])) $n=$convert[$n];
+
+ $pack['owner'] = $pack['point_of_contact'];
+ $pack['people'] = array();
+ foreach ($pack['acls'] as $acl) {
+ if ($acl['acl']=='commit' && $acl['status']=='Approved') {
+ $pack['people'][] = $acl['fas_name'];
+ }
+ }
+ $branches[$n] = $pack;
}
$this->logDebug(7, print_r($branches, true));
return $branches;
diff --git a/class/Parser.php b/class/Parser.php
index 365f0f8..98fd997 100644
--- a/class/Parser.php
+++ b/class/Parser.php
@@ -7,7 +7,7 @@
*
* PHP version 5
*
- * Copyright © 2010 Remi Collet
+ * Copyright © 2010-2014 Remi Collet
*
* This file is part of rpmphp.
*
@@ -29,7 +29,7 @@
*
* @author Remi Collet <unknown@unknwown.com>
* @author Johan Cwiklinski <johan@x-tnd.be>
- * @copyright 2010 Remi Collet
+ * @copyright 2010-2014 Remi Collet
* @license http://www.gnu.org/licenses/agpl-3.0-standalone.html AGPL License 3.0 or (at your option) any later version
* @link http://github.com/remicollet/rpmphp/
* @since The begining of times.
diff --git a/class/TableAcls.php b/class/TableAcls.php
index 9ef71ae..570385d 100644
--- a/class/TableAcls.php
+++ b/class/TableAcls.php
@@ -7,7 +7,7 @@
*
* PHP version 5
*
- * Copyright © 2010 Remi Collet
+ * Copyright © 2010-2014 Remi Collet
*
* This file is part of rpmphp.
*
@@ -29,7 +29,7 @@
*
* @author Remi Collet <unknown@unknwown.com>
* @author Johan Cwiklinski <johan@x-tnd.be>
- * @copyright 2010 Remi Collet
+ * @copyright 2010-2014 Remi Collet
* @license http://www.gnu.org/licenses/agpl-3.0-standalone.html AGPL License 3.0 or (at your option) any later version
* @link http://github.com/remicollet/rpmphp/
* @since The begining of times.
diff --git a/class/TableIterator.php b/class/TableIterator.php
index 6cc85e9..831e845 100644
--- a/class/TableIterator.php
+++ b/class/TableIterator.php
@@ -4,7 +4,7 @@
*
* PHP version 5
*
- * Copyright © 2010 Remi Collet
+ * Copyright © 2010-2014 Remi Collet
*
* This file is part of rpmphp.
*
@@ -26,7 +26,7 @@
*
* @author Remi Collet <unknown@unknwown.com>
* @author Johan Cwiklinski <johan@x-tnd.be>
- * @copyright 2010 Remi Collet
+ * @copyright 2010-2014 Remi Collet
* @license http://www.gnu.org/licenses/agpl-3.0-standalone.html AGPL License 3.0 or (at your option) any later version
* @link http://github.com/remicollet/rpmphp/
* @since The begining of times.
diff --git a/class/TablePearRepo.php b/class/TablePearRepo.php
index 8554fe4..65ffeea 100644
--- a/class/TablePearRepo.php
+++ b/class/TablePearRepo.php
@@ -4,7 +4,7 @@
*
* PHP version 5
*
- * Copyright © 2010 Remi Collet
+ * Copyright © 2010-2014 Remi Collet
*
* This file is part of rpmphp.
*
@@ -26,7 +26,7 @@
*
* @author Remi Collet <unknown@unknwown.com>
* @author Johan Cwiklinski <johan@x-tnd.be>
- * @copyright 2010 Remi Collet
+ * @copyright 2010-2014 Remi Collet
* @license http://www.gnu.org/licenses/agpl-3.0-standalone.html AGPL License 3.0 or (at your option) any later version
* @link http://github.com/remicollet/rpmphp/
* @since The begining of times.
diff --git a/class/TableRRepo.php b/class/TableRRepo.php
index 8d23082..226a796 100644
--- a/class/TableRRepo.php
+++ b/class/TableRRepo.php
@@ -7,7 +7,7 @@
*
* PHP version 5
*
- * Copyright © 2010 Remi Collet
+ * Copyright © 2010-2014 Remi Collet
*
* This file is part of rpmphp.
*
@@ -29,7 +29,7 @@
*
* @author Remi Collet <unknown@unknwown.com>
* @author Johan Cwiklinski <johan@x-tnd.be>
- * @copyright 2010 Remi Collet
+ * @copyright 2010-2014 Remi Collet
* @license http://www.gnu.org/licenses/agpl-3.0-standalone.html AGPL License 3.0 or (at your option) any later version
* @link http://github.com/remicollet/rpmphp/
* @since The begining of times.
diff --git a/class/TableRpm.php b/class/TableRpm.php
index 8a6b39b..12ac623 100644
--- a/class/TableRpm.php
+++ b/class/TableRpm.php
@@ -7,7 +7,7 @@
*
* PHP version 5
*
- * Copyright © 2010 Remi Collet
+ * Copyright © 2010-2014 Remi Collet
*
* This file is part of rpmphp.
*
@@ -29,7 +29,7 @@
*
* @author Remi Collet <unknown@unknwown.com>
* @author Johan Cwiklinski <johan@x-tnd.be>
- * @copyright 2010 Remi Collet
+ * @copyright 2010-2014 Remi Collet
* @license http://www.gnu.org/licenses/agpl-3.0-standalone.html AGPL License 3.0 or (at your option) any later version
* @link http://github.com/remicollet/rpmphp/
* @since The begining of times.
diff --git a/class/TableRpmRepo.php b/class/TableRpmRepo.php
index 3144abe..17e29d2 100644
--- a/class/TableRpmRepo.php
+++ b/class/TableRpmRepo.php
@@ -7,7 +7,7 @@
*
* PHP version 5
*
- * Copyright © 2010 Remi Collet
+ * Copyright © 2010-2014 Remi Collet
*
* This file is part of rpmphp.
*
@@ -29,7 +29,7 @@
*
* @author Remi Collet <unknown@unknwown.com>
* @author Johan Cwiklinski <johan@x-tnd.be>
- * @copyright 2010 Remi Collet
+ * @copyright 2010-2014 Remi Collet
* @license http://www.gnu.org/licenses/agpl-3.0-standalone.html AGPL License 3.0 or (at your option) any later version
* @link http://github.com/remicollet/rpmphp/
* @since The begining of times.
diff --git a/class/TableUpstream.php b/class/TableUpstream.php
index fbf7b98..e94d266 100644
--- a/class/TableUpstream.php
+++ b/class/TableUpstream.php
@@ -7,7 +7,7 @@
*
* PHP version 5
*
- * Copyright © 2010 Remi Collet
+ * Copyright © 2010-2014 Remi Collet
*
* This file is part of rpmphp.
*
@@ -29,7 +29,7 @@
*
* @author Remi Collet <unknown@unknwown.com>
* @author Johan Cwiklinski <johan@x-tnd.be>
- * @copyright 2010 Remi Collet
+ * @copyright 2010-2014 Remi Collet
* @license http://www.gnu.org/licenses/agpl-3.0-standalone.html AGPL License 3.0 or (at your option) any later version
* @link http://github.com/remicollet/rpmphp/
* @since The begining of times.