1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205
|
<?php
/*
This code is part of FusionDirectory (http://www.fusiondirectory.org/)
Copyright (C) 2003-2010 Cajus Pollmeier
Copyright (C) 2011-2013 FusionDirectory
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA.
*/
/* TODO add a select for archs ? */
class serviceDebianRepository extends simpleService
{
var $objectclasses = array("FAIrepositoryServer");
// The main function : information about attributes
static function getAttributesInfo ()
{
return array(
'main' => array(
'template' => get_template_path('fai_repository.tpl', TRUE, dirname(__FILE__)),
'name' => _('Repositories'),
'class' => array('fullwidth'),
'attrs' => array(
new OrderedArrayAttribute(
new PipeSeparatedCompositeAttribute(
_('Repositories this server hosts'),
'FAIrepository',
array(
new StringAttribute(
_('URL'), _('Repository url'),
'mirrorUrl', TRUE
),
new SelectAttribute(
_('Parent server'), _('Parent repository server'),
'mirrorParent', FALSE,
array(), ''
),
new StringAttribute(
_('Release'), _('Debian release used on this repository'), 'mirrorRelease', TRUE
),
new CommaListAttribute(
'mirrorSections',
new SetAttribute(
new StringAttribute(
_('Sections'), _('Debian sections available on this repository'), 'mirrorSections_inner'
)
)
),
new SelectAttribute(
_('Mirror mode'), _('Is this mirror an installation repository? Is its release a custom one?'),
'mirrorMode', TRUE,
array('install','update','custom')
),
new BooleanAttribute(
_('Local mirror'), _('Is this mirror a local or a network mirror?'),
'mirrorLocal', FALSE,
FALSE, '',
'local', 'network'
),
new CommaListAttribute(
'mirrorArchs',
new SetAttribute(
new StringAttribute(
_('Architectures'), _('Processor architectures available on this repository'), 'mirrorArchs_inner'
)
)
),
),
'', '' // no formats
),
FALSE, // no order
array(),
TRUE // edit button
)
)
)
);
}
/* Return plugin informations for acl handling */
static function plInfo()
{
return array(
'plShortName' => _('Debian repository'),
'plDescription' => _('Debian repository').' ('._('Services').')',
'plIcon' => 'plugins/fai/images/iconMiniRepository.png',
'plProvidedAcls' => parent::generatePlProvidedAcls(self::getAttributesInfo())
);
}
function __construct (&$config, $dn = NULL, $parent = NULL)
{
parent::__construct($config, $dn, $parent);
$this->attributesAccess['FAIrepository']->attribute->attributes[1]->setChoices($this->getParentServers());
$releaseList = array_map(
function ($a)
{
return "custom:$a";
},
$this->getReleaseList()
);
$releaseChoices = array_merge(array('install', 'update'), $releaseList);
$this->attributesAccess['FAIrepository']->attribute->attributes[4]->setChoices($releaseChoices);
$this->attributesAccess['FAIrepository']->setLinearRendering(FALSE);
}
function ldap_save($clean = TRUE)
{
parent::ldap_save($clean);
$repos = $this->attributesAccess['FAIrepository']->getArrayValues();
$done = array();
foreach ($repos as $repo) {
$release = $repo[2];
if (($repo[4] == 'install') && (!isset($done[$release]))) {
FAI::createBranch($release);
$done[$release] = TRUE;
}
}
}
function getReleaseList ()
{
$ldap = $this->config->get_ldap_link();
$ldap->ls("(objectClass=FAIbranch)", get_ou("faiBaseRDN").$this->config->current['BASE'], array("ou"));
$list = array();
while ($release = $ldap->fetch()) {
$list[] = $release['ou'][0];
}
return $list;
}
function getParentServers()
{
$ldap = $this->config->get_ldap_link();
$ldap->cd($this->config->current['BASE']);
$ldap->search("(objectClass=FAIrepositoryServer)", array("cn"));
$ret = array();
while ($attr = $ldap->fetch()) {
if ($attr['cn'][0] == $this->cn) {
continue;
}
$ret[$attr['cn'][0]] = $attr['cn'][0];
}
$ret = array_merge($ret, $this->getHookElements());
asort($ret);
return $ret;
}
/* this funtions calls a defined hook
and parses all additional serverdata
*/
function getHookElements()
{
$ret = array();
$cmd = $this->config->search("serviceRepository", "repositoryBranchHook", array('tabs'));
if (!empty($cmd)) {
$res = shell_exec($cmd);
$res2 = trim($res);
if (!$res || empty($res2)) {
msg_dialog::display(_("Error"), msgPool::cmdexecfailed( "repositoryBranchHook",
$cmd,
_("Repository service")),
ERROR_DIALOG);
} else {
$tmp = preg_split("/\n/", $res);
foreach ($tmp as $hook) {
/* skip empty */
if (empty($hook)) {
continue;
}
if (preg_match("/;/", $hook)) {
$hookinfo = explode(";", $hook);
$ret[$hookinfo[0]] = $hookinfo[0];
} else {
$ret[$hook] = $hook;
}
}
}
}
return $ret;
}
}
?>
|