-
-
Notifications
You must be signed in to change notification settings - Fork 163
/
Copy pathsettings-logos_save.cgi
executable file
·56 lines (46 loc) · 1.75 KB
/
settings-logos_save.cgi
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
#!/usr/bin/perl
#
# Authentic Theme (https://github.com/authentic-theme/authentic-theme)
# Copyright Ilia Rostovtsev <programming@rostovtsev.io>
# Licensed under MIT (https://github.com/authentic-theme/authentic-theme/blob/master/LICENSE)
#
use strict;
our (%in, $current_theme, $config_directory, $get_user_level, %theme_text, $has_usermin, $has_usermin_conf_dir);
do("$ENV{'THEME_ROOT'}/authentic-lib.pl");
$get_user_level ne '0' && error($theme_text{'theme_error_access_not_root_user'});
theme_make_config_dir();
my $ls = "logo.png";
my $lr = "/$current_theme/$ls";
my $lsw = "logo_welcome.png";
my $lw = "/$current_theme/$lsw";
if ($in{'authenticated_logo'} eq "1" &&
length $in{'authenticated_logo_file'})
{
unlink_file($config_directory . $lr);
write_file_contents($config_directory . $lr, $in{'authenticated_logo_file'});
if ($has_usermin) {
unlink_file($has_usermin_conf_dir . $lr);
write_file_contents($has_usermin_conf_dir . $lr, $in{'authenticated_logo_file'});
}
} elsif ($in{'authenticated_logo'} ne "1") {
unlink_file($config_directory . $lr);
if ($has_usermin) {
unlink_file($has_usermin_conf_dir . $lr);
}
}
if ($in{'unauthenticated_logo'} eq "1" &&
length $in{'unauthenticated_logo_file'})
{
unlink_file($config_directory . $lw);
write_file_contents($config_directory . $lw, $in{'unauthenticated_logo_file'});
if ($has_usermin) {
unlink_file($has_usermin_conf_dir . $lw);
write_file_contents($has_usermin_conf_dir . $lw, $in{'unauthenticated_logo_file'});
}
} elsif ($in{'unauthenticated_logo'} ne "1") {
unlink_file($config_directory . $lw);
if ($has_usermin) {
unlink_file($has_usermin_conf_dir . $lw);
}
}
redirect('/settings-logos.cgi?saved=1');