Let co-maintainers edit package keywords

Signed-off-by: Johannes Löthberg <johannes@kyriasis.com>
Signed-off-by: Lukas Fleischer <lfleischer@archlinux.org>
This commit is contained in:
Johannes Löthberg 2015-06-20 12:44:38 +02:00 committed by Lukas Fleischer
parent a5fd2bb39d
commit 918f00f9a2
2 changed files with 4 additions and 3 deletions

View file

@ -957,7 +957,8 @@ function pkgbase_get_keywords($base_id) {
function pkgbase_set_keywords($base_id, $keywords) { function pkgbase_set_keywords($base_id, $keywords) {
$base_id = intval($base_id); $base_id = intval($base_id);
if (!has_credential(CRED_PKGBASE_SET_KEYWORDS, array(pkgbase_maintainer_uid($base_id)))) { $maintainers = array_merge(array(pkgbase_maintainer_uid($base_id)), pkgbase_get_comaintainer_uids(array($base_id)));
if (!has_credential(CRED_PKGBASE_SET_KEYWORDS, $maintainers)) {
return array(false, __("You are not allowed to edit the keywords of this package base.")); return array(false, __("You are not allowed to edit the keywords of this package base."));
} }

View file

@ -196,13 +196,13 @@ $sources = pkg_sources($row["ID"]);
<td><a href="<?= htmlspecialchars($row['URL'], ENT_QUOTES) ?>" title="<?= __('Visit the website for') . ' ' . htmlspecialchars( $row['Name'])?>"><?= htmlspecialchars($row['URL'], ENT_QUOTES) ?></a></td> <td><a href="<?= htmlspecialchars($row['URL'], ENT_QUOTES) ?>" title="<?= __('Visit the website for') . ' ' . htmlspecialchars( $row['Name'])?>"><?= htmlspecialchars($row['URL'], ENT_QUOTES) ?></a></td>
</tr> </tr>
<?php <?php
if (has_credential(CRED_PKGBASE_SET_KEYWORDS, array($row["MaintainerUID"])) || count($keywords) > 0): if (has_credential(CRED_PKGBASE_SET_KEYWORDS, $maintainers) || count($keywords) > 0):
?> ?>
<tr> <tr>
<th><?= __('Keywords') . ': ' ?></th> <th><?= __('Keywords') . ': ' ?></th>
<td> <td>
<?php <?php
if (has_credential(CRED_PKGBASE_SET_KEYWORDS, array($row["MaintainerUID"]))): if (has_credential(CRED_PKGBASE_SET_KEYWORDS, $maintainers)):
?> ?>
<form method="post" action="<?= htmlspecialchars(get_pkgbase_uri($row['BaseName']), ENT_QUOTES); ?>"> <form method="post" action="<?= htmlspecialchars(get_pkgbase_uri($row['BaseName']), ENT_QUOTES); ?>">
<div> <div>