summaryrefslogtreecommitdiffstats
path: root/application/modules/ipxe/controllers/AuthController.php
blob: 0590f4bc095a93bb43b49554050327e18bcf0a1f (plain) (blame)
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
212
213
<?php
/*
 * Copyright (c) 2011 - OpenSLX GmbH, RZ Uni Freiburg
* This program is free software distributed under the GPL version 2.
* See http://gpl.openslx.org/
*
* If you have any feedback please consult http://feedback.openslx.org/ and
* send your suggestions, praise, or complaints to feedback@openslx.org
*
* General information about OpenSLX can be found at http://openslx.org/
*/

class Ipxe_AuthController extends Zend_Controller_Action {
  protected $session;
  protected $sessionMapper;
  protected $error;

  public function init() {
    $this->_helper->layout->disableLayout();
    $this->_helper->viewRenderer->setNoRender();
    $this->db = Zend_Db_Table::getDefaultAdapter();

    $this->session = new Application_Model_Session();
    $this->sessionMapper = new Application_Model_SessionMapper();

    $alphaID = $this->_request->getParam('alpha');

    if(isset($alphaID)) {
      $alphasessionID = $alphaID;
      $result = $this->sessionMapper->findBy(array('alphasessionID' => $alphasessionID), true);
      if(isset($result)) {
        $this->session = $this->session->setOptions($result[0]);
        $this->session->setID($result[0]['sessionID']);
      } else {
        $this->error = "session";
      }
    }
  }

  public function serialAction() {
    $serialnumber = $this->_request->getParam('serialnumber');
    $mac = $this->_request->getParam('mac');

    if(isset($serialnumber)) {
      // Create a session
      $n = new Pbs_Session();

      $bootisomapper = new Application_Model_BootIsoMapper();
      $bootiso = new Application_Model_BootIso();

      $results = $bootisomapper->findBy(array('serialnumber' => $serialnumber), true);

      if(isset($results)) {
        $bootiso->setOptions($results[0]);
        $bootiso->setID($results[0]['bootisoID']);
        $groupID = $bootiso->getGroupID();

        $client = new Application_Model_Client();
        $client->setGroupID($groupID);
        $client->setMacadress($mac);
        $client->setCreated(time());
        $client = $n->createClient($client);
        $clientID = $client->getID();

        $this->session->setBootisoID($bootiso->getID());
        $this->session->setClientID($clientID);
        $this->session->setTime(time());
        $this->session->setIp($_SERVER['REMOTE_ADDR']);
        $this->session = $n->createSession($this->session);
      } else {
        $this->error = "serial";
      }
    } else {
      $this->error = "serial";
    }

    header('Content-Type: text/plain');

    $result = "#!ipxe\n";
    if(isset($this->session)) {
      $result .= "set filename http://".$_SERVER['HTTP_HOST']."/ipxe/resource/getvesamenuconfig/alpha/".$this->session->getAlphasessionID()."/error/".$this->error."\n";
      $result .= ":start\n";
      $result .= "chain http://".$_SERVER['HTTP_HOST']."/ipxe/vesamenu.c32 \${filename}\n";
      $result .= "goto start\n";
    } else {
      $result .= "chain http://".$_SERVER['HTTP_HOST']."/ipxe/vesamenu.c32 http://".$_SERVER['HTTP_HOST']."/ipxe/resource/getvesamenuconfig/serialnumber/$serialnumber/mac/$mac/error/$this->error\n";
    }
    header("Content-Length: ".(strlen($result)));
    echo $result;

  }

  public function loginAction() {
    $alpha = $this->_request->getParam('alpha');
    $login = $this->_request->getParam('login');

    if (isset($login)) {
      header('Content-Type: text/plain');
      $result = "#!ipxe\n";
      $result .= "clear username\n";
      $result .= "clear password\n";
      $result .= "login\n";
      $result .= "isset \${username} || set username null\n";
      $result .= "chain http://\${username:uristring}:\${password:uristring}@".$_SERVER['HTTP_HOST']."/ipxe/auth/login/alpha/".$alpha."\n";
      header("Content-Length: ".(strlen($result)));
      echo $result;
      exit;
    }

    if(!isset($_SERVER['PHP_AUTH_USER']) || !isset($_SERVER['PHP_AUTH_PW'])) {
      header('WWW-Authenticate: Basic realm=""');
      header('HTTP/1.0 401 Unauthorized');
      $result = "#!ipxe\n";
      $result .= "set filename http://".$_SERVER['HTTP_HOST']."/ipxe/resource/getvesamenuconfig/alpha/".$this->session->getAlphasessionID()."/error/login\n";
      header("Content-Length: ".(strlen($result)));
      echo $result;
      exit;
    }

    $email = $_SERVER['PHP_AUTH_USER'];
    $password = $_SERVER['PHP_AUTH_PW'];

    $auth = Zend_Auth::getInstance();
    $adapter = new Zend_Auth_Adapter_DbTable($this->db, 'pbs_person', 'email', 'password', 'MD5(CONCAT(?, password_salt))');
    $adapter->setIdentity($email);
    $adapter->setCredential($password);

    $result = $auth->authenticate($adapter);

    if (isset($this->session)) {
      if ($result->isValid()) {

        $personmapper = new Application_Model_PersonMapper();
        $result = $personmapper->findBy(array('email' => Zend_Auth::getInstance()->getIdentity()), true);
        $person = new Application_Model_Person($result[0]);
        $person->setID($result[0]['personID']);
        $date = new DateTime();
        $person->setLogindate($date->getTimestamp());
        $personmapper->save($person);

        $this->session->setPersonID($person->getID());
        $this->sessionMapper->save($this->session);

      } else {
        $this->error = "login";
      }
    } else {
      $this->error = "session";
    }


    header('Content-Type: text/plain');
    $result = "#!ipxe\n";
    $result .= "set filename http://".$_SERVER['HTTP_HOST']."/ipxe/resource/getvesamenuconfig/alpha/".$this->session->getAlphasessionID()."/error/".$this->error."\n";
    header("Content-Length: ".(strlen($result)));
    echo $result;
    exit;



  }

  public function logoutAction() {

    $alpha = $this->_request->getParam('alpha');

    if (isset($this->session)) {
      $this->session->setPersonID(null);
      $this->session->setMembershipID(null);
      $this->sessionMapper->save($this->session);
    } else {
      $this->error = "session";
    }

    $this->_redirect('/ipxe/resource/getvesamenuconfig/alpha/'.$alpha.'/error/'.$this->error);

  }

  public function switchgroupAction() {

    $alpha = $this->_request->getParam('alpha');

    if (isset($this->session)) {
      $this->session->setMembershipID(null);
      $this->sessionMapper->save($this->session);
    } else {
      $this->error = "session";
    }

    $this->_redirect('/ipxe/resource/getvesamenuconfig/alpha/'.$alpha.'/error/'.$this->error);
  }

  public function setgroupAction() {

    $alpha = $this->_request->getParam('alpha');
    $membershipID = $this->_request->getParam('membershipid');

    //TODO test if member of group
    if (isset($this->session)) {
      $this->session->setMembershipID($membershipID);
      $this->sessionMapper->save($this->session);
    } else {
      $this->error = "session";
    }

    $this->_redirect('/ipxe/resource/getvesamenuconfig/alpha/'.$alpha.'/error/'.$this->error);
  }





}