]> jspc29.x-matter.uni-frankfurt.de Git - labtools.git/commitdiff
added rooms to presenter
authorJan Michel <jan@mueschelsoft.de>
Mon, 20 Apr 2015 21:18:14 +0000 (23:18 +0200)
committerJan Michel <jan@mueschelsoft.de>
Mon, 20 Apr 2015 21:18:14 +0000 (23:18 +0200)
13 files changed:
presenter/.gitignore [new file with mode: 0644]
presenter/.kateproject [new file with mode: 0644]
presenter/currentstate [new symlink]
presenter/getPic.pl
presenter/getfiles.pl
presenter/index.pl
presenter/presenter [deleted symlink]
presenter/scripts.js
presenter/showPic.pl
presenter/showroom.pl [new file with mode: 0755]
presenter/store/.empty [new file with mode: 0644]
presenter/style.css
presenter/uploadFiles.pl

diff --git a/presenter/.gitignore b/presenter/.gitignore
new file mode 100644 (file)
index 0000000..435e7d1
--- /dev/null
@@ -0,0 +1 @@
+.kateproject.d/
diff --git a/presenter/.kateproject b/presenter/.kateproject
new file mode 100644 (file)
index 0000000..4bc5cd7
--- /dev/null
@@ -0,0 +1,4 @@
+{
+  "name": "Presenter"
+, "files": [ { "git": 1 } ]
+}
diff --git a/presenter/currentstate b/presenter/currentstate
new file mode 120000 (symlink)
index 0000000..17fb8d9
--- /dev/null
@@ -0,0 +1 @@
+/dev/shm/currentstate
\ No newline at end of file
index 53f1c2803aa0e34529dd64956d0e2b38b3fa8af3..bf1d77b9c68fb34cf1ea6f186536c3c813bf639a 100755 (executable)
@@ -1,11 +1,28 @@
 #!/usr/bin/perl
 use CGI::Carp qw(warningsToBrowser fatalsToBrowser); 
+use CGI;
 print "Content-type: text/html\n\n";
 
-open FILE, "<", "presenter";
-my @data = <FILE>;
-close FILE;
 
-my $f = $data[0];
+my $cgi = new CGI();
+
+
+my $room = $cgi->param('room');
+if (!($room =~ /^[a-zA-Z0-9]+$/) || !(-d "store/$room")) {
+  print "Invalid room";
+  return 1;
+}
+
+my $old = $cgi->param('old');
+my $timer = 0;
+my $f;
+do {
+  open FILE, "<", "store/$room/currentstate";
+  my @data = <FILE>;
+  close FILE;
+  $f = $data[0];
+  chomp($f);
+  sleep(1) if($f eq $old);
+  }while($timer++ < 30 && $f eq $old);
 
 print $f;
\ No newline at end of file
index c917f1fdb26c548552f142af2efa1d0eb1554028..5010e7ecf5e0d8fed1fa24da650476b56c851986 100755 (executable)
@@ -1,11 +1,24 @@
 #!/usr/bin/perl
 use CGI::Carp qw(warningsToBrowser fatalsToBrowser); 
+use CGI;
 print "Content-type: text/html\n\n";
 
-my @files = qx(cd store; ls -1 * | sort);
+
+my $cgi = new CGI();
+
+
+my $room = $cgi->param('room');
+if (!($room =~ /^[a-zA-Z0-9]+$/) || !(-d "store/$room")) {
+  print "Invalid room";
+  return 1;
+}
+
+my $cmd = "cd store;cd $room; ls -1 -v";
+my @files = qx($cmd);
 print "<select id=\"filelist\" size=\"20\">\n";
 foreach my $f (@files) {
   chomp($f);
+  next if $f eq "currentstate";
   print "<option value='$f'>$f\n";
   } 
 print "</select>";
index 4994e3de88474b432f013be6ce83b7925f4f54af..ff8d763fb5f915a1415c38509edb49f8779d897f 100755 (executable)
@@ -3,14 +3,7 @@ use CGI::Carp qw(warningsToBrowser fatalsToBrowser);
 
 print "Content-type: text/html\n\n";
 
-use Data::Dumper;
-use warnings;
-use strict;
-use utf8;
-binmode(STDIN, ":utf8");
-binmode(STDOUT, ":utf8");
 
-use URI::Escape qw(uri_unescape uri_escape);
 
 print <<HDOC;
 <!DOCTYPE html>
@@ -21,27 +14,20 @@ print <<HDOC;
  <script src="scripts.js" type="text/javascript"></script>
  <meta  charset="UTF-8"/>
 </head>
+<body class="title">
+<h1>Remote Presenter</h1>
+<select id="roomlist" size="20">
 HDOC
-print '<body class="'.$ENV{'QUERY_STRING'}.'">';
-print <<HDOC;
-<div id="content">Remote Presenter<br>&lt;-- Click to show or just watch!</div>
-<div id="control">
-<form method="post" action="uploadFiles.pl" enctype="multipart/form-data">
-<input type="file" name="upfile"><input type="submit" name="button" value="Upload">
-</form>
-<button type="button" onClick="updatefiles();">Update</button>
+my @files = qx(cd store; ls -1 -v );
 
-<hr>Files
-<div id="files">&nbsp;</div>
-<button type="button" onClick="window.open('store/'+document.getElementById('filelist').value)">Show Me!</button><button type="button" onClick="present(document.getElementById('filelist').value)">Show All!</button>
-</div>
-</body></html>
-HDOC
-  
-print "";    
-  
-  
-  
-  
-  
+foreach my $f (@files) {
+  chomp($f);
+  print "<option value='$f'>$f\n";
+  } 
 
+print <<HDOC;
+</select><br>
+<button type="button" onClick="window.location='showroom.pl?'+document.getElementById('roomlist').value">Enter Room</button>
+</body>
+</html>
+HDOC
\ No newline at end of file
diff --git a/presenter/presenter b/presenter/presenter
deleted file mode 120000 (symlink)
index 2be2ab5..0000000
+++ /dev/null
@@ -1 +0,0 @@
-/dev/shm/presenter
\ No newline at end of file
index ef481e70f49d76983d45db5281454158bb18a2b4..938548a1b346ef11519a75d84c4b2ea457f0fa93 100644 (file)
@@ -1,5 +1,5 @@
 
-var currentPic = '';
+var currentPic = ' ';
 
 function getData(command,dId,callback) {
   
@@ -27,12 +27,13 @@ function getData(command,dId,callback) {
 
 
 function updatefiles() {
-  getData("getfiles.pl","files");
+  room = document.getElementById("showroom").getAttribute("room");
+  getData("getfiles.pl?room="+room,"files");
 }
 
 function present(f) {
   if(f != "") {
-    getData("showPic.pl?"+f);
+    getData("showPic.pl?img="+f+"&room="+document.getElementById("showroom").getAttribute("room"));
     }
   else {
     alert("Select a file to show!");
@@ -40,14 +41,15 @@ function present(f) {
 }
 
 function updatepresentation(t) {
+  room = document.getElementById("showroom").getAttribute("room");
+  t = t.trim();
   if(currentPic != t) {
     currentPic = t;
-    document.getElementById("content").innerHTML = '<img src="store/'+t+'">';
+    document.getElementById("content").innerHTML = '<img src="store/'+room+'/'+t+'">';
     }
-  setTimeout('getData("getPic.pl",null,updatepresentation)',1000);  
+  setTimeout('getData("getPic.pl?old='+t+'&room='+room+'",null,updatepresentation)',1000);  
   }
 
 
 setTimeout('updatefiles();',500);
-
-setTimeout('getData("getPic.pl",null,updatepresentation)',1000);
+setTimeout('updatepresentation(" ");',200);
index fcfd74d41be0820abfe378975a843e7a7f9893d5..87d0fbd683b3230189698fc4817b89c392927f3d 100755 (executable)
@@ -1,11 +1,24 @@
 #!/usr/bin/perl
 use CGI::Carp qw(warningsToBrowser fatalsToBrowser); 
+use CGI;
 print "Content-type: text/html\n\n";
 
+my $cgi = new CGI();
 
-my $t = $ENV{'QUERY_STRING'};
-$t =~ s-/--;
 
-system("echo $t>presenter");
+my $room = $cgi->param("room");
+if (!($room =~ /^[a-zA-Z0-9]+$/) || !(-d "store/$room")) {
+  print "Invalid room";
+  return 1;
+}
+
+my $t = $cgi->param("img");
+if($t =~ /[\"\$\(\)\/]/ || !(-e "store/$room/$t")) {
+  print "Invalid selection";
+  return 1;
+}
+
+system("echo $t>store/$room/currentstate");
 
 1;
\ No newline at end of file
diff --git a/presenter/showroom.pl b/presenter/showroom.pl
new file mode 100755 (executable)
index 0000000..e63b0c3
--- /dev/null
@@ -0,0 +1,51 @@
+#!/usr/bin/perl
+use CGI::Carp qw(warningsToBrowser fatalsToBrowser); 
+
+print "Content-type: text/html\n\n";
+
+use Data::Dumper;
+use warnings;
+use strict;
+use utf8;
+binmode(STDIN, ":utf8");
+binmode(STDOUT, ":utf8");
+
+use URI::Escape qw(uri_unescape uri_escape);
+
+my $room = $ENV{'QUERY_STRING'};
+$room =~ s![\(\)/]+!!g;
+
+
+print <<HDOC;
+<!DOCTYPE html>
+<html lang="en">
+<head>
+ <title>Remote Presenter</title>
+ <link rel="stylesheet" type="text/css" href="style.css">
+ <script src="scripts.js" type="text/javascript"></script>
+ <meta  charset="UTF-8"/>
+</head>
+<body id="showroom" room="$room">
+HDOC
+print <<HDOC;
+<div id="content">Remote Presenter<br>&lt;-- Click to show or just watch!</div>
+<div id="control">
+Select a file and press upload.
+<form method="post" action="uploadFiles.pl" enctype="multipart/form-data">
+<input type="hidden" name="room" value="$room">
+<input type="file" name="upfile"><input type="submit" name="button" value="Upload">
+</form>
+<hr>
+<button type="button" onClick="updatefiles();">Update file list</button>
+<div id="files"> &nbsp; </div>
+<button type="button" onClick="window.open('store/$room/'+document.getElementById('filelist').value)">Show Me!</button>
+<button type="button" onClick="present(document.getElementById('filelist').value)">Show All!</button>
+
+</body></html>
+HDOC
+  
+  
+  
+  
+  
+
diff --git a/presenter/store/.empty b/presenter/store/.empty
new file mode 100644 (file)
index 0000000..e69de29
index c50d40aa8f6db960e2bc8b0a84c67d97d59e1364..9d42381494434c722433e170469f5b9f40aa69b9 100644 (file)
@@ -20,7 +20,18 @@ body {
   padding-left:20px;
   }
 
-
+body.title {
+  background:#f0f0ea;
+  padding:0;
+}
+  
+h1 {
+  color: #889;
+  width:100%;
+  padding-left:20px;
+  border-bottom:1px solid #aaa;
+ }  
+  
 #control {
   height:100%;
   width:220px;
@@ -47,23 +58,14 @@ body {
 
 #content img {
   height:100%;
-  /*width:100%;*/
   max-width:100%;
   object-fit:contain;
   margin:0;
   padding:0;
   }
   
-
-div.but {
-  border:1px solid #aaa;
-  background:#fff;
-  width:100px;
-  margin:5px;
-  text-align:center;
-  display:inline-block;
-  cursor:hand;
-  color:#889;
-  }  
+#roomlist {
+  width:200px;
+}
   
   
index 4207153a2a92b34bcab29340eeef3e861d160285..abf8caf1f20c27b5ad0dacc90218ca97da861d01 100755 (executable)
@@ -9,13 +9,20 @@ print "Content-type: text/html\n\n";
 
 my $upfile = $cgi->param('upfile');
 
+my $room = $cgi->param('room');
+if (!($room =~ /^[a-zA-Z0-9]+$/) || !(-d "store/$room")) {
+  print "Invalid room";
+  return 1;
+}
+
+
 my $basename = GetBasename($upfile);
 $basename =~ s-/--;
 
 my $fh = $cgi->upload('upfile'); 
 
 
-if (! open(OUTFILE, ">store/$basename") ) {
+if (! open(OUTFILE, ">store/$room/$basename") ) {
   print "Can't open outfile for writing - $!";
   exit(-1);
 }
@@ -32,8 +39,8 @@ close(OUTFILE);
 if($basename =~ /.pdf$/) {
   my $b = $basename;
   $b =~ s/.pdf//;
-  system("cd store;../convert.sh $basename $b");
-  system("rm store/$basename");
+  system("cd store/$room;../../convert.sh $basename $b");
+  system("rm store/$room/$basename");
   }