summaryrefslogtreecommitdiff
path: root/rh-bin
diff options
context:
space:
mode:
authorChristian Pointner <equinox@helsinki.at>2016-03-23 18:01:33 (GMT)
committerChristian Pointner <equinox@helsinki.at>2016-03-23 18:01:33 (GMT)
commitef99a657ec87ae100f3a4c2a2ac9e594cebc051a (patch)
tree3ecf04c6ec3c08a53a775a62691f75240b1c7063 /rh-bin
inital commit
Diffstat (limited to 'rh-bin')
-rwxr-xr-xrh-bin/showlist.json46
1 files changed, 46 insertions, 0 deletions
diff --git a/rh-bin/showlist.json b/rh-bin/showlist.json
new file mode 100755
index 0000000..ce59748
--- /dev/null
+++ b/rh-bin/showlist.json
@@ -0,0 +1,46 @@
+#!/usr/bin/perl
+#
+# rhrdweb
+#
+# Copyright (C) 2016 Christian Pointner <equinox@helsinki.at>
+#
+# This file is part of rhrdweb.
+#
+# rhrdweb is free software: you can redistribute it and/or modify
+# it under the terms of the GNU Affero General Public License as published by
+# the Free Software Foundation, either version 3 of the License, or
+# any later version.
+#
+# rhrdweb is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU Affero General Public License for more details.
+#
+# You should have received a copy of the GNU Affero General Public License
+# along with rhrdweb. If not, see <http://www.gnu.org/licenses/>.
+#
+
+use strict;
+use RHRD::rddb;
+use JSON;
+
+my $status = 'ERROR';
+my $errorstring = 'unknown';
+my $responsecode = 500;
+
+(my $ctx, $status, $errorstring) = RHRD::rddb::init();
+if(defined $ctx) {
+ $status = 'ERROR';
+ $errorstring = 'not yet implemented';
+ $responsecode = 501;
+
+ RHRD::rddb::destroy($ctx);
+}
+
+my %answer;
+$answer{'status'} = $status;
+$answer{'errorstring'} = $errorstring;
+
+print "Content-type: application/json; charset=UTF-8\n";
+print "Status: $responsecode\n\n";
+print encode_json \%answer;