aboutsummaryrefslogtreecommitdiff
path: root/filter.c
diff options
from:
to:
context:
space:
mode:
authorGravatar Saya Andy <saya.andy@posteo.com> 2026-07-30 12:27:31 +0700
committerGravatar Saya Andy <saya.andy@posteo.com> 2026-07-30 12:27:31 +0700
commit7162aef3344a4f4f2d7edd2f214d805bd744c20c (patch)
tree53f1f504b83b3d8d36270431206aea7c6f6d969b /filter.c
parentb4b4f2325db71041f38902143b28bae94762b111 (diff)
downloadcgitext-7162aef3344a4f4f2d7edd2f214d805bd744c20c.tar.gz
cgitext-7162aef3344a4f4f2d7edd2f214d805bd744c20c.zip
ui-ci: let a ci-filter decide whether the tab is shown
cgit cannot know whether the ref being viewed actually has a pipeline, so the "ci" tab is offered for every ref and only reveals a missing one once followed. Probing the ci system from cgit is not an option: the tab is part of the page header, so it would mean a blocking request for every page of every repository, cgit links no http client, and job pages are usually not readable anonymously. Add a ci filter instead, which receives the ref, whether it is a branch or a tag, and the expanded url, and answers with its exit status. This keeps credentials, timeouts and caching in a script, where they belong; filters/ci-jenkins.sh demonstrates all three against Jenkins' REST API. The verdict is memoized, so the filter runs once per request rather than once for the tab and again for the redirect, and it governs the page as well as the tab, so a hidden tab cannot be reached by typing the url. Signed-off-by: Saya Andy <saya.andy@posteo.com>
Diffstat (limited to 'filter.c')
-rw-r--r--filter.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/filter.c b/filter.c
index c778d05..3b452cb 100644
--- a/filter.c
+++ b/filter.c
@@ -30,12 +30,14 @@ void cgit_cleanup_filters(void)
reap_filter(ctx.cfg.email_filter);
reap_filter(ctx.cfg.owner_filter);
reap_filter(ctx.cfg.auth_filter);
+ reap_filter(ctx.cfg.ci_filter);
for (i = 0; i < cgit_repolist.count; ++i) {
reap_filter(cgit_repolist.repos[i].about_filter);
reap_filter(cgit_repolist.repos[i].commit_filter);
reap_filter(cgit_repolist.repos[i].source_filter);
reap_filter(cgit_repolist.repos[i].email_filter);
reap_filter(cgit_repolist.repos[i].owner_filter);
+ reap_filter(cgit_repolist.repos[i].ci_filter);
}
}
@@ -424,6 +426,10 @@ struct cgit_filter *cgit_new_filter(const char *cmd, filter_type filtertype)
argument_count = 12;
break;
+ case CI:
+ argument_count = 3;
+ break;
+
case EMAIL:
argument_count = 2;
break;