Forbid web spiders/bots to crawl 'blame' and other views in gitweb
[girocco.git] / cgi / delproj.cgi
blob248631fff8685bed753fec8a15d2c37983853e03
1 #!/usr/bin/perl
2 # (c) Petr Baudis <pasky@suse.cz>
3 # GPLv2
5 use strict;
6 use warnings;
8 use lib ".";
9 use Girocco::CGI;
10 use Girocco::Config;
11 use Girocco::Project;
12 use Girocco::Util;
14 my $gcgi = Girocco::CGI->new('Project Removal');
15 my $cgi = $gcgi->cgi;
17 my $name = $cgi->param('name');
19 unless (defined $name) {
20 print "<p>I need the project name as an argument now.</p>\n";
21 exit;
24 if (!Girocco::Project::valid_name($name)) {
25 print "<p>Invalid project name. Go away, sorcerer.</p>\n";
26 exit;
29 if (!Girocco::Project::does_exist($name)) {
30 print "<p>Sorry but this project does not exist. Now, how did you <em>get</em> here?!</p>\n";
31 exit;
34 my $proj = Girocco::Project->load($name);
35 $proj or die "not found project $name, that's really weird!";
36 $proj->{cpwd} = $cgi->param('cpwd');
38 if (!$proj->{mirror}) {
39 print "<p>Sorry but you can remove only mirrored projects. Pushed projects cannot be removed. Please tell the administrator if you really want to.</p>\n";
40 exit;
43 if ($proj->has_forks()) {
44 print "<p>Sorry but this project has forks associated. Such projects cannot be removed. Please tell the administrator if you really want to.</p>\n";
45 exit;
48 if ($cgi->param('y0')) {
49 # submitted
50 if (not $proj->authenticate($gcgi)) {
51 exit;
53 $proj->delete;
54 print "<p>Project successfully deleted. Have a nice day.</p>\n";
55 exit;
58 my $url = $proj->{url};
60 print <<EOT;
61 <p>Please confirm that you are going to remove mirrored project
62 $name ($url) from the site.</p>
63 <form method="post">
64 <input type="hidden" name="name" value="$name" />
65 EOT
66 if ($Girocco::Config::project_passwords) {
67 print <<EOT;
68 <p>Admin password: <input type="password" name="cpwd" /> <sup><a href="pwproj.cgi?name=$name">(forgot password?)</a></sup></p>
69 EOT
71 print <<EOT;
72 <p><input type="submit" name="y0" value="Remove" /></p>
73 </form>
74 EOT