aboutsummaryrefslogtreecommitdiff
path: root/lib/App/Acmeman/Apache/Layout.pm
blob: 7cc839962a4c730a75860dd0bfb9e79149574203 (plain)
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
package App::Acmeman::Apache::Layout;

use strict;
use warnings;
use Carp;
use File::Basename;

require Exporter;
our @ISA = qw(Exporter);

my %apache_layout_tab = (
    slackware => {
	_test => sub { -d '/etc/httpd/extra' },
	_config_file => '/etc/httpd/httpd.conf',
	_incdir => '/etc/httpd/extra',
	_restart => '/etc/rc.d/rc.httpd restart'
    },
    debian =>    {
	_config_file  => '/etc/apache2/apache2.conf',
	_incdir  => sub {
	    for my $dir ('/etc/apache2/conf-available',
			 '/etc/apache2/conf.d') {
		return $dir if -d $dir;
	    }
	    carp 'none of the expected configuration directories found; falling back to /etc/apache2';
	    return '/etc/apache2';
	},
	_restart => '/usr/sbin/service apache2 restart',
	_post_setup => sub {
	    my ($filename) = @_;
	    my $dir = dirname($filename);
	    my $name = basename($filename);
	    if ($dir eq '/etc/apache2/conf-available') {
		chdir('/etc/apache2/conf-enabled');
		symlink "../conf-available/$name", $name;
	    }
	}
    },
    rh => {
	_config_file => '/etc/httpd/conf/httpd.conf',
	_incdir => '/etc/httpd/conf.d',
	_restart => '/usr/sbin/service httpd restart'
    },
    suse => {
	_config_file => '/etc/apache2/httpd.conf',
	_test => sub { ! -f '/etc/apache2/apache2.conf' },
	_incdir => '/etc/apache2/conf.d',
	_restart => '/usr/sbin/service httpd restart'
	    # or systemctl restart apache2.service
    }
);

# new(NAME)
# new()
sub new {
    my $class = shift;
    my $self = bless { }, $class;
    my $name;
    
    if (@_ == 0) {
	# Autodetect
	while (my ($n, $layout) = each %apache_layout_tab) {
	    if (-f $layout->{_config_file}) {
		if (exists($layout->{_test}) && !&{$layout->{_test}}) {
		    next;
		}
		$name = $n;
		last;
	    }
	}
	croak "unrecognized Apache layout" unless defined $name;
    } elsif (@_ == 1) {
	$name = shift;
    }
    
    if (exists($apache_layout_tab{$name})) {
	@{$self}{keys %{$apache_layout_tab{$name}}} =
	    values %{$apache_layout_tab{$name}};
    } else {
	croak "undefined Apache layout $name";
    }

    $self->{_layout_name} = $name;
    
    return $self;
}

sub name {
    my $self = shift;
    return $self->{_layout_name};
}

sub config_file {
    my $self = shift;
    return $self->{_config_file};
}

sub restart_command {
    my $self = shift;
    return $self->{_restart};
}

sub incdir {
    my $self = shift;
    if (exists($self->{_incdir})) {
	if (ref($self->{_incdir}) eq 'CODE') {
	    return &{$self->{_incdir}};
	} else {
	    return $self->{_incdir};
	}
    }
    return dirname($self->{_config_file});
}

1;

Return to:

Send suggestions and report system problems to the System administrator.