forked from opendcim/openDCIM
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Manufacturer.class.php
200 lines (159 loc) · 5.22 KB
/
Manufacturer.class.php
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
<?php
/*
openDCIM
This is the main class library for the openDCIM application, which
is a PHP/Web based data center infrastructure management system.
This application was originally written by Scott A. Milliken while
employed at Vanderbilt University in Nashville, TN, as the
Data Center Manager, and released under the GNU GPL.
Copyright (C) 2011 Scott A. Milliken
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published
by the Free Software Foundation, version 3.
This program 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 General Public License for more details.
For further details on the license, see http://www.gnu.org/licenses
*/
class Manufacturer {
var $ManufacturerID;
var $Name;
var $GlobalID;
var $SubscribeToUpdates;
function MakeSafe(){
$this->ManufacturerID=intval($this->ManufacturerID);
$this->Name=sanitize($this->Name);
$this->GlobalID = intval( $this->GlobalID );
$this->SubscribeToUpdates = intval( $this->SubscribeToUpdates );
}
function MakeDisplay(){
$this->Name=stripslashes($this->Name);
}
static function RowToObject($row){
$m=new Manufacturer();
$m->ManufacturerID=$row["ManufacturerID"];
$m->Name=$row["Name"];
$m->GlobalID = $row["GlobalID"];
$m->SubscribeToUpdates = $row["SubscribeToUpdates"];
$m->MakeDisplay();
return $m;
}
function prepare( $sql ) {
global $dbh;
return $dbh->prepare( $sql );
}
function query($sql){
global $dbh;
return $dbh->query($sql);
}
function exec($sql){
global $dbh;
return $dbh->exec($sql);
}
function getManufacturerByGlobalID() {
$st = $this->prepare( "select * from fac_Manufacturer where GlobalID=:GlobalID" );
$st->execute( array( ":GlobalID"=>$this->GlobalID ) );
$st->setFetchMode( PDO::FETCH_CLASS, "Manufacturer" );
if ( $row = $st->fetch() ) {
foreach( $row as $prop=>$val ) {
$this->$prop = $val;
}
return true;
} else {
return false;
}
}
function GetManufacturerByID(){
$this->MakeSafe();
$sql="SELECT * FROM fac_Manufacturer WHERE ManufacturerID=$this->ManufacturerID;";
if($row=$this->query($sql)->fetch()){
foreach(Manufacturer::RowToObject($row) as $prop => $value){
$this->$prop=$value;
}
return true;
}else{
return false;
}
}
function GetManufacturerByName(){
$this->MakeSafe();
$sql="SELECT * FROM fac_Manufacturer WHERE ucase(Name)=ucase('".$this->Name."');";
if($row=$this->query($sql)->fetch()){
foreach(Manufacturer::RowToObject($row) as $prop => $value){
$this->$prop=$value;
}
return true;
}else{
return false;
}
}
function GetManufacturerList($indexbyid=false){
$sql="SELECT * FROM fac_Manufacturer ORDER BY Name ASC;";
$ManufacturerList=array();
foreach($this->query($sql) as $row){
if($indexbyid){
$ManufacturerList[$row['ManufacturerID']]=Manufacturer::RowToObject($row);
}else{
$ManufacturerList[]=Manufacturer::RowToObject($row);
}
}
return $ManufacturerList;
}
function getSubscriptionList() {
$st = $this->prepare( "select * from fac_Manufacturer where GlobalID>0 and SubscribeToUpdates=true order by GlobalID ASC" );
$st->execute();
$st->setFetchMode( PDO::FETCH_CLASS, "Manufacturer" );
$mList = array();
while ( $row = $st->fetch() ) {
$mList[] = $row;
}
return $mList;
}
function CreateManufacturer(){
global $dbh;
$this->MakeSafe();
$sql="INSERT INTO fac_Manufacturer SET Name=\"$this->Name\", GlobalID=$this->GlobalID,
SubscribeToUpdates=$this->SubscribeToUpdates;";
if(!$dbh->exec($sql)){
error_log( "SQL Error: " . $sql );
return false;
}else{
$this->ManufacturerID=$dbh->lastInsertID();
(class_exists('LogActions'))?LogActions::LogThis($this):'';
$this->MakeDisplay();
return true;
}
}
function DeleteManufacturer($TransferTo=null){
$this->MakeSafe();
$tmpl=new DeviceTemplate();
$tmpl->ManufacturerID=$this->ManufacturerID;
$templates=$tmpl->GetTemplateListByManufacturer();
// If a TransferTo isn't supplied then just delete the templates that depend on this key
foreach($templates as $DeviceTemplate){
// A manufacturerid of 0 is impossible so if we get that via something fuck 'em delete
if(!is_null($TransferTo) && intval($TransferTo)>0){
$DeviceTemplate->ManufacturerID=$TransferTo;
$DeviceTemplate->UpdateTemplate();
}else{
// This option is not being provided but us at this time, maybe through the API
$DeviceTemplate->DeleteTemplate();
}
}
$sql="DELETE FROM fac_Manufacturer WHERE ManufacturerID=$this->ManufacturerID;";
(class_exists('LogActions'))?LogActions::LogThis($this):'';
return $this->query($sql);
}
function UpdateManufacturer(){
$this->MakeSafe();
$sql="UPDATE fac_Manufacturer SET Name=\"$this->Name\", GlobalID=$this->GlobalID, SubscribeToUpdates=$this->SubscribeToUpdates WHERE ManufacturerID=$this->ManufacturerID;";
$old=new Manufacturer();
$old->ManufacturerID=$this->ManufacturerID;
$old->GetManufacturerByID();
$this->MakeDisplay();
(class_exists('LogActions'))?LogActions::LogThis($this,$old):'';
return $this->query($sql);
}
}
?>