summaryrefslogtreecommitdiff
path: root/index.html
blob: 12b32a9637a8d3d57d4b1942129246be29185a9e (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
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
<!DOCTYPE HTML>
<html>
 <head>
  <title>Radio Helsinki - Automation Import</title>
  <meta charset="utf-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <meta name="description" content="Importtool for Radio Helsinki">
  <meta name="author" content="Christian Pointner <equinox@ffgraz.net>">

  <link href="/javascript/twitter-bootstrap/css/bootstrap.css" rel="stylesheet">
  <link href="/styles/signin.css" rel="stylesheet">
  <style type="text/css">
    body {
      background-color: #eee;
      padding-top: 60px;
      padding-bottom: 40px;
    }
  </style>
  <link href="/javascript/twitter-bootstrap/css/bootstrap-responsive.css" rel="stylesheet">
  <script src="/javascript/jquery/jquery.min.js"></script>
  <script src="/javascript/twitter-bootstrap/js/bootstrap.min.js"></script>
  <script src="/javascript/twitter-bootstrap/js/bootstrap-alert.min.js"></script>
  <script type="text/javascript">
    var username = sessionStorage.getItem("username");
    var token = sessionStorage.getItem("token");
    var app = sessionStorage.getItem("app");

    alertbox = function() {}
    alertbox.warning = function (heading, message) {
      $('#alertbox').html('<div class="alert"><a class="close" data-dismiss="alert" href="#">&times;</a><h4 class="alert-heading">' + heading + '</h4>' + message + '</div>');
    }
    alertbox.error = function (heading, message) {
      $('#alertbox').html('<div class="alert alert-error"><a class="close" data-dismiss="alert" href="#">&times;</a><h4 class="alert-heading">' + heading + '</h4>' + message + '</div>');
    }
    alertbox.info = function (heading, message) {
      $('#alertbox').html('<div class="alert alert-info"><a class="close" data-dismiss="alert" href="#">&times;</a><h4 class="alert-heading">' + heading + '</h4>' + message + '</div>');
    }

    function selectApp(app) {
       switch(app) {
         case "musicpools":
           $('#app-shows').hide();
           $('#nav-btn-shows').removeClass('active');
           $('#app-musicpools').show();
           $('#nav-btn-musicpools').addClass('active');
           break;
         default:
           $('#app-shows').show();
           $('#nav-btn-shows').addClass('active');
           $('#app-musicpools').hide();
           $('#nav-btn-musicpools').removeClass('active');
           app = 'shows';
       }
       sessionStorage.setItem("app", app);
    }

    function authSuccess(data) {
       if (data.status == 'OK') {
         username = data.username;
         sessionStorage.setItem("username", username);

         token = data.token;
         sessionStorage.setItem("token", token);

         selectApp('shows');

         $('#username-field').html(username);
         $('#loginbox').slideUp();
         $('#mainwindow').fadeIn();
       } else {
         alertbox.error("Fehler beim Login", data.errorstring);

         sessionStorage.removeItem("username");
         delete username;
         $("#username").val('').focus();

         sessionStorage.removeItem("token");
         delete token;
         $("#password").val('');

	 sessionStorage.removeItem("app");
         delete app;
       }
    }

    function authError(req, status, error) {
       message = req.status + ': ' + error;
       if(req.status == 401) {
         message = "Benutzer und/oder Passwort sind falsch!";
       }
       alertbox.error("Fehler beim Login", message);
    }

    function login()
    {
      $.ajax("/authtoken.json",
              { cache: false,
                username: $("#username").val(),
                password: $("#password").val(),
                dataType: "json",
                error: authError,
                success: authSuccess
              });
      $("#password").val('');
    }

    function logout()
    {
      sessionStorage.removeItem("username");
      delete username;
      sessionStorage.removeItem("token");
      delete token;
      sessionStorage.removeItem("app");
      delete app;

      $(".alert").alert('close');
      $("#username").val('');
      $("#password").val('');
      $("#mainwindow").fadeOut();
      $('#username-field').html('');
      $('#loginbox').slideDown();
    }
  </script>
 </head>
 <body>

  <div class="container">

    <div id="loginbox">

      <form id="loginform" class="form-signin" role="form">
        <img src="/img/helsinki.png" />
        <h1 class="form-signin-heading">Radio Helsinki - Import</h1>
        <input id="username" type="text" class="form-control" placeholder="Benutzername" required autofocus>
        <input id="password" type="password" class="form-control" placeholder="Passwort" required>
        <div id="alertbox"></div>
        <button class="btn btn-primary btn-large" type="submit"><i class="icon-user icon-white"></i> Anmelden</button>
      </form>

    </div>


    <div id="mainwindow">

      <div class="navbar navbar-fixed-top">
        <div class="navbar-inner">
          <div class="container-fluid">
            <a class="btn btn-navbar" data-toggle="collapse" data-target=".nav-collapse">
              <span class="icon-bar"></span>
              <span class="icon-bar"></span>
              <span class="icon-bar"></span>
            </a>
            <span class="brand">Radio Helsinki - Import</span>
            <div class="nav-collapse">
              <ul class="nav">
                <li id="nav-btn-shows"><a href="#" onclick="selectApp('shows')">Sendungen</a></li>
                <li id="nav-btn-musicpools"><a href="#" onclick="selectApp('musicpools')">Musikpools</a></li>
              </ul>
              <form id="logoutform" class="navbar-form pull-right">
                <span class="navbar-text">angmeldet als <strong id="username-field">UNKNOWN</strong></span>&nbsp;&nbsp;
                <button style="margin-top: 0;" type="button" class="btn btn-danger btn-small" onclick="logout()">
                  <i class="icon-off icon-white"></i> Abmelden
                </button>
              </form>
            </div>
          </div>
        </div>
      </div>

      <div id="app-shows" class="container-fluid">
        <div class="span12">
          <div class="hero-unit">
            <h1>Sendungen</h1>
            <p>
              This is a template for a simple marketing or informational website.
              It includes a large callout called the hero unit and three supporting
              pieces of content. Use it as a starting point to create something
              more unique.
            </p>
          </div>
        </div>
      </div>

      <div id="app-musicpools" class="container-fluid">
        <div class="span12">
          <div class="hero-unit">
            <h1>Musikpools</h1>
            <p>
              coming soon!
            </p>
          </div>
        </div>
      </div>

    </div>

  </div>

  <script type="text/javascript">
    $("#loginform").submit(function(event) { login(); event.preventDefault(); });
    $('#username-field').html(username);
    selectApp('shows');
    if(token && username) {
      $("#loginbox").hide();
    } else {
      $("#mainwindow").hide();
    }
  </script>

 </body>
</html>