blob: 0d1428a8903ef75ae93bad8852d95d6154ba3cb8 (
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
|
<?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_ResourceController extends Zend_Controller_Action
{
private $thisSession;
public function init()
{
$this->_helper->layout->disableLayout();
$this->_helper->viewRenderer->setNoRender();
$session = new Application_Model_Session();
$sm = new Application_Model_SessionMapper();
//TODO Error Messages if something failed
$alphaID = $this->_request->getParam('alpha');
if($alphaID != ""){
$alphasessionID = $alphaID;
$result = $sm->findBy(array('alphasessionID' => $alphasessionID),true);
# print_a($result);
$this->thisSession = $session->setOptions($result[0]);
$this->thisSession->setID($result[0]['sessionID']);
}
}
public function getvesamenuAction(){
if(is_dir("../resources/ipxe/")){
header('Content-Type: application/octet-stream');
$content_disp = ( ereg('MSIE ([0-9].[0-9]{1,2})', $_SERVER['HTTP_USER_AGENT']) == 'IE') ? 'inline' : 'attachment';
header('Content-Disposition: ' . $content_disp . '; filename="vesamenu.c32"');
header('Pragma: no-cache');
header('Expires: 0');
chdir("../resources/ipxe/");
header("Content-Length: ".filesize(getcwd()."/vesamenu.c32"));
passthru( "cat vesamenu.c32");
}else{
header('HTTP/1.0 404 Not Found');
}
}
public function getvesamenuconfigAction(){
header('Content-Type: text/html');
$content_disp = ( ereg('MSIE ([0-9].[0-9]{1,2})', $_SERVER['HTTP_USER_AGENT']) == 'IE') ? 'inline' : 'attachment';
header('Content-Disposition: ' . $content_disp . '; filename="vesamenu.conf"');
header('Pragma: no-cache');
header('Expires: 0');
$vesamenuView = new Zend_View();
$vesamenuView->addScriptPath(APPLICATION_PATH.'/modules/ipxe/views/scripts/resource/');
$vesamenuView->host = $_SERVER['HTTP_HOST'];
// Request Bootmenu
$pbsFilter = new Pbs_Filter();
$bootmenuID = $pbsFilter->evaluate();
if($bootmenuID != null){
$vesamenuView->alphaID = $this->thisSession->getAlphasessionID();
$bootmenuMapper = new Application_Model_BootMenuMapper();
$bm = $bootmenuMapper->find($bootmenuID);
$vesamenuView->title = $bm->getTitle();
// $this->view->startcounter = $bm->getStartcounter();
$bootmenuentriesMapper = new Application_Model_BootMenuEntriesMapper();
$res = $bootmenuentriesMapper->findBy(array('bootmenuID' => $bootmenuID),false);
$vesamenuView->bmelist = $res;
}
else{
$vesamenuView->error = "You have no BootMenu.";
}
$vesamenu = $vesamenuView->render('getvesamenu.phtml');
header("Content-Length: ".(strlen($vesamenu)));
echo $vesamenu;
}
public function ipxeAction(){
header('Content-Type: text/plain');
$result = "#!ipxe\n";
$result .= "imgfree\n";
$result .= "chain http://".$_SERVER['HTTP_HOST']."/ipxe/resource/getvesamenu/alpha/".$this->thisSession->getAlphasessionID()." http://".$_SERVER['HTTP_HOST']."/ipxe/resource/getvesamenuconfig/alpha/".$this->thisSession->getAlphasessionID();
header("Content-Length: ".(strlen($result)));
echo $result;
}
}
|