-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
lmibanez
committed
May 13, 2022
0 parents
commit d712e6e
Showing
15 changed files
with
3,196 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,56 @@ | ||
<div id="spinner"> </div> | ||
<div id="audioContainer" style="display: none;"> | ||
<audio id="audioAlarm"> | ||
</audio> | ||
</div> | ||
|
||
|
||
<div id="app" style="position: absolute; top: 0px; left: 0px; bottom: 0px; right: 0px;"></div> | ||
|
||
<script type="text/javascript"> | ||
var initialState = { | ||
access: { | ||
user: { | ||
profile: profile, | ||
id: user, | ||
domain: domain, | ||
}, | ||
comm: { | ||
resources: { | ||
hostname: httpip, | ||
port: httpport, | ||
home: httpd_home, | ||
apli: apli, | ||
confFile: "alarms_panel_config.json", | ||
servicePath: apli + "/alarms_panel_settings_manager.cgi" | ||
}, | ||
channel: { | ||
hostname: host, | ||
port: port | ||
}, | ||
}, | ||
panelName: panalName, | ||
} | ||
} | ||
</script> | ||
|
||
<script type="text/javascript" src="assets/moment/2.18.1/js/moment.min.js"></script> | ||
<script type="text/javascript" src="assets/jquery/3.2.0/js/jquery.min.js"></script> | ||
<script type="text/javascript" src="assets/w2ui/1.5.rc1/js/w2ui.js"></script> | ||
<script type="text/javascript" src="scripts/Customw2ui.js"></script> | ||
<script type="text/javascript" src="assets/asevented/0.4.6/js/asevented.min.js"></script> | ||
|
||
<script type="text/javascript" src="assets/js-logger/1.3.0/js/logger.min.js"></script> | ||
|
||
<script type="text/javascript" src="scripts/MessageBus.js"></script> | ||
<script type="text/javascript" src="scripts/Store.js"></script> | ||
<script type="text/javascript" src="scripts/AlarmsChannelService.js"></script> | ||
<script type="text/javascript" src="scripts/AlarmsResourcesService.js"></script> | ||
<script type="text/javascript" src="scripts/AlarmsView.js"></script> | ||
<script type="text/javascript" src="scripts/StatisticsView.js"></script> | ||
<script type="text/javascript" src="scripts/FilterManagementView.js"></script> | ||
<script type="text/javascript" src="main.js"></script> | ||
|
||
|
||
<!-- Linea administrativa CVS --> | ||
<!-- $Id: AlarmsPanel.html,v 1.8 2017/09/11 12:51:55 lmibanez Exp $ --> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
"# alams-panel" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,217 @@ | ||
#!/usr/local/bin/perl | ||
|
||
# -------------------------------------------------------------------------------------- | ||
# Gestion de los ficheros de filtros y layout por usuario para el nuevo panel de alarmas | ||
# -------------------------------------------------------------------------------------- | ||
|
||
BEGIN { | ||
require "entorno.cfg"; | ||
}; | ||
|
||
use diagnostics; | ||
use strict; | ||
use warnings; | ||
|
||
use html; | ||
use general; | ||
use JSON; | ||
use Fcntl qw(:DEFAULT :flock); | ||
use Data::Dumper; | ||
|
||
my ($user) = param("UserName"); | ||
my ($domain) = param("zona"); | ||
my ($profile) = param("Perfil"); | ||
my ($httpd_home) = param("httpd_home"); | ||
my ($apli) = param("apli"); | ||
|
||
######################################################################################## | ||
# Funciones de soporte para la gestion de los ficheros | ||
######################################################################################## | ||
|
||
sub HTTP_return($$){ | ||
my $header = shift; | ||
my $retval = shift; | ||
print STDOUT "Content-Length: " . length($retval) ."\n"; | ||
print STDOUT "Content-Type: $header\n\n"; | ||
print STDOUT $retval; | ||
} | ||
|
||
sub HTTP_return_json($$) { | ||
my $result_code = shift; | ||
my $message = shift; | ||
my $retval = encode_json({ 'response' => { 'result_code' => $result_code, 'message' => $message }}); | ||
HTTP_return('application/json', $retval); | ||
} | ||
|
||
sub gen_user_id { | ||
my ($user, $profile, $domain) = @_; | ||
my $userid = $user . "_" . $profile . "_" . $domain; | ||
return($userid); | ||
} | ||
|
||
sub get_user_lock_file { | ||
my ($userid) = @_; | ||
if (!$ENV{DIRIACALARMS_REPO_CONF}) { | ||
error('get_user_lock_file', 'Undefined DIRIACALARMS_REPO_CONF'); | ||
} | ||
return ($ENV{DIRIACALARMS_REPO_CONF} . '/' . $userid . '/.' . $userid . '.lock'); | ||
} | ||
|
||
sub create_alarms_panel_repository { | ||
|
||
my ($user, $profile, $domain) = @_; | ||
my (@directories, @files); | ||
|
||
if (!$ENV{DIRIACALARMS_REPO_CONF}) { | ||
error('create_alarm_panel_repository', 'Undefined DIRIACALARMS_REPO_CONF'); | ||
} | ||
|
||
my $userid = gen_user_id($user, $profile, $domain); | ||
my $userconfdir = "$ENV{DIRIACALARMS_REPO_CONF}/$userid"; | ||
my $lockfile = get_user_lock_file($userid); | ||
@directories = ($userconfdir); | ||
@files = ($lockfile); | ||
|
||
for my $directory(@directories) { | ||
if (! -d $directory) { | ||
if (system('mkdir', '-m', '0750', '-p', '--', $directory) != 0) { | ||
error('create_alarm_panel_repository', "Can't create directory $directory"); | ||
return -1; | ||
} | ||
if (system('cp', $ENV{DIRIACALARMS_REPO_CONF} . '/alarms_panel_config_default.json', $directory . '/alarms_panel_config.json') != 0) { | ||
error('create_alarm_panel_repository', "Can't move default panel configuration to $directory"); | ||
return -1; | ||
} | ||
} | ||
} | ||
|
||
for my $file(@files) { | ||
if (! -e $file) { | ||
if (open(REPO, ">$file")) { | ||
close(REPO); | ||
chmod 0750, $file; | ||
} else { | ||
error('create_alarm_panel_repository', "Can't create file $file"); | ||
return -1; | ||
} | ||
} | ||
} | ||
|
||
return 0; | ||
} | ||
|
||
sub delete_json_file($$) { | ||
my $jsonfile = shift; | ||
my $lockfile = shift; | ||
if (!sysopen(LOCKFILE, $lockfile, O_RDWR)) { | ||
error('delete_json_file', "No se pudo abrir el fichero $lockfile'.\n"); | ||
return (-1); | ||
} | ||
if (!flock(LOCKFILE, LOCK_EX)) { | ||
error('delete_json_file', "No se pudo bloquear el fichero '$lockfile'.\n"); | ||
return (-1); | ||
} | ||
if (!unlink ($jsonfile)) { | ||
error('delete_json_file', "No se pudo borrar el fichero '$jsonfile'.\n"); | ||
return (-1); | ||
} | ||
if (!flock(LOCKFILE, LOCK_UN)) { | ||
error('delete_json_file', "No se pudo desbloquear el fichero '$lockfile'.\n"); | ||
return (-1); | ||
} | ||
|
||
return 0; | ||
} | ||
|
||
sub update_json_file($$$) { | ||
my $jsonfile = shift; | ||
my $jsoncontent = shift; | ||
my $lockfile = shift; | ||
|
||
if (!sysopen(LOCKFILE, $lockfile, O_RDWR)) { | ||
error('update_json_file', "No se pudo abrir el fichero $lockfile'.\n"); | ||
return(-1); | ||
} | ||
if (!flock(LOCKFILE, LOCK_EX)) { | ||
error('update_json_file', "No se pudo bloquear el fichero '$lockfile'.\n"); | ||
return(-1); | ||
} | ||
open(FILEHANDLE, '>', $jsonfile . '.tmp' ) or return (-1); | ||
print FILEHANDLE $jsoncontent or return (-1); | ||
close FILEHANDLE or return (-1); | ||
rename($jsonfile . '.tmp', $jsonfile) or return (-1); | ||
if (!flock(LOCKFILE, LOCK_UN)) { | ||
error('update_json_file', "No se pudo desbloquear el fichero '$lockfile'.\n"); | ||
return (-1); | ||
} | ||
return(0); | ||
} | ||
|
||
sub list_files($$) { | ||
my $filepath = shift; | ||
my $fileMask = shift; | ||
my @files = (); | ||
if (chdir $filepath) { | ||
@files = glob($fileMask); | ||
} | ||
return(encode_json({ 'files' => \@files })); | ||
} | ||
|
||
|
||
######################################################################################## | ||
# Main | ||
######################################################################################## | ||
|
||
my $file = param('file'); | ||
my $operation = param('operation'); | ||
|
||
my $userid; | ||
my $lockfile; | ||
my $filepath; | ||
|
||
if (defined $user) { | ||
$userid = gen_user_id($user, $profile, $domain); | ||
$lockfile = get_user_lock_file($userid); | ||
$filepath = $ENV{DIRIACALARMS_REPO_CONF} . '/' . $userid . '/'; | ||
if (create_alarms_panel_repository($user, $profile, $domain) != 0) { | ||
HTTP_return_json(-1, 'Error creating repository'); | ||
exit(-1); | ||
} | ||
} else { | ||
$filepath = $ENV{DIRIACALARMS_REPO_CONF} . '/'; | ||
} | ||
|
||
if ($operation eq 'delete') { | ||
if (delete_json_file($filepath . $file, $lockfile) == 0) { | ||
HTTP_return_json(0, 'OK'); | ||
exit(0); | ||
} else { | ||
HTTP_return_json(-1, 'Error deleting file'); | ||
exit(-1); | ||
} | ||
} elsif ($operation eq 'update') { | ||
if (update_json_file($filepath . $file, param('jsoncontent'), $lockfile) == 0) { | ||
HTTP_return_json(0, 'OK'); | ||
exit(0); | ||
} else { | ||
HTTP_return_json(-1, 'Error updating file'); | ||
exit(-1); | ||
} | ||
} elsif ($operation eq 'get') { | ||
if (open(JSONFILE, $filepath . $file)) { | ||
my $holdTerminator = $/; | ||
undef $/; | ||
my $jsoncontent = <JSONFILE>; | ||
$/ = $holdTerminator; | ||
close(JSONFILE); | ||
HTTP_return('application/json', $jsoncontent); | ||
} else { | ||
HTTP_return('application/json', ''); | ||
} | ||
} elsif($operation eq 'list') { | ||
HTTP_return('application/json', list_files($filepath, $file)); | ||
} else { | ||
HTTP_return_json(-1, 'Command not implemented'); | ||
exit(-1); | ||
} | ||
|
Oops, something went wrong.