-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtj_class.php
286 lines (272 loc) · 8.54 KB
/
tj_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
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
<?php
class tj_account {
var $tj_account_id;
var $tj_tw_token;
var $tj_tw_id;
var $tj_tw_avatar;
var $tj_tw_name;
var $tj_tw_screenname;
var $tj_apiKey;
var $tj_aCycle;
var $set_sDefault;
var $set_tEnt;
var $set_tNews;
var $set_tBus;
var $set_tMusic;
var $set_tTech;
var $set_tHealth;
var $set_rUSAw;
var $set_rUSAc;
var $set_rUSAe;
var $set_rCANw;
var $set_rCANc;
var $set_rCANe;
function tj_account($twitterInfo,$token) {
//var $tj_account_id;
//var $tj_cadmus_api_key;
$this->tj_tw_token = $token;
$this->tj_tw_id = $twitterInfo->id;
$this->tj_tw_avatar = $twitterInfo->profile_image_url;
$this->tj_tw_name = $twitterInfo->name;
$this->tj_tw_screenname = $twitterInfo->screen_name;
$cr = $this->checkAccount($twitterInfo);
if($cr < 0) {
//echo "Something went wrong <br />";
} elseif($cr == 0) {
//echo "New account <br />";
$ir = $this->insertAccount($twitterInfo);
if($ir == -1) {
//echo "ERROR: error inserting <br />";
} else {
//$this->logEvent("insertAccount","$twitterInfo->id","Error: unable to");
$this->tj_account_id = $ir;
//echo "New account inserted <br />";
}
$this->loadSettings($ir);
} else {
$ur = $this->updateAccount($twitterInfo);
$lu = $this->getLastTJ($twitterInfo->id);
$this->tj_account_id = $ur;
$this->loadSettings($ur);
//echo "Should update here <br />";
}
}
function loadSettings($id) {
if($db = new MySQLDB) {
$query = "SELECT * FROM tblSettings WHERE aID=".$id." ORDER BY sID;";
if($result = mysql_query($query)) {
if(mysql_num_rows($result) == 1) {
while($row = mysql_fetch_assoc($result)) {
if(isset($row['apiKey'])) {
$this->tj_apiKey = $row['apiKey'];
} else {
$this->tj_apiKey = "";
}
$this->tj_aCycle = $row['aCycle'];
$this->set_sDefault = $row['sDefault'];
$this->set_tEnt = $row['tEnt'];
$this->set_tNews = $row['tNews'];
$this->set_tBus = $row['tBus'];
$this->set_tMusic = $row['tMusic'];
$this->set_tTech = $row['tTech'];
$this->set_tHealth = $row['tHealth'];
$this->set_rUSAw = $row['rUSAw'];
$this->set_rUSAc = $row['rUSAc'];
$this->set_rUSAe = $row['rUSAe'];
$this->set_rCANw = $row['rCANw'];
$this->set_rCANc = $row['rCANc'];
$this->set_rCANe = $row['rCANe'];
}
//return $result;
} else if(mysql_num_rows($result) <= 0) {
$create_query = "INSERT INTO tblSettings(aID) VALUES($id);";
if(mysql_query($create_query)) {
$this->tj_aCycle = 10800;
$this->set_sDefault = 1;
$this->set_tEnt = 0;
$this->set_tNews = 0;
$this->set_tBus = 0;
$this->set_tMusic = 0;
$this->set_tTech = 0;
$this->set_tHealth = 0;
$this->set_rUSAw = 0;
$this->set_rUSAc = 0;
$this->set_rUSAe = 0;
$this->set_rCANw = 0;
$this->set_rCANc = 0;
$this->set_rCANe = 0;
} else {
$this->logEvent("loadSettings","admin","Insert Query Error: ".mysql_error());
return -3;
}
} else {
$this->logEvent("loadSettings","$twitterInfo->id","Duplicate entries in tblAccount");
return -1;
}
} else {
$this->logEvent("loadSettings","admin","Query Error: ".mysql_error());
return -2;
}
}
}
//var $tj_cadmus_api_key;
/*
* function: getLastTJ()
* parameters: varchar -> twitterInfo->id
* description: Check for the last time TJ cycled on the account
* return: date -> if the TJ account ran at least once
* null -> if the account is new and never ran
* call: logEvent() -> if errors during sql or more than 1 entry for the account exists
*/
function getLastTJ($id) {
if($db = new MySQLDB) {
$query = "SELECT aLastTJ FROM tblAccounts WHERE aTwitterID=".$id.";";
if($result = mysql_query($query)) {
if(mysql_num_rows($result) == 1) {
while($row = mysql_fetch_assoc($result)) {
return $row['aLastTJ'];
}
//return $result;
} else if(mysql_num_rows($result) <= 0) {
return 0;
} else {
$this->logEvent("checkAccount","$twitterInfo->id","Duplicate entries in tblAccount");
return -1;
}
} else {
$this->logEvent("checkAccount","admin","Query Error: ".mysql_error());
return -2;
}
}
}
/*
* function: checkAccount()
* parameters: EpiTwitter -> twitterInfo
* description: Check for existing TJ account
* return: true -> if the account already exists
* false -> if the account does not exist
* call: logEvent() -> if errors during sql or more than 1 entry for the account exists
*/
function checkAccount($twitterInfo) {
if($db = new MySQLDB) {
$query = "SELECT * FROM tblAccounts WHERE aTwitterID=".$twitterInfo->id.";";
if($result = mysql_query($query)) {
if(mysql_num_rows($result) == 1) {
while($row = mysql_fetch_assoc($result)) {
return $row['aID'].",".$row['aTwitterID'];
}
//return $result;
} else if(mysql_num_rows($result) <= 0) {
return 0;
} else {
$this->logEvent("checkAccount","$twitterInfo->id","Duplicate entries in tblAccount");
return -1;
}
} else {
$this->logEvent("checkAccount","admin","Query Error: ".mysql_error());
return -2;
}
}
}
/*
* function: insertAccount()
* parameters: EpiTwitter -> twitterInfo
* description: add new TJ account into tblAccounts
* return: true -> if query was successful
* false -> if query was unsuccessful, also calls logEvent();
*/
function insertAccount($twitterInfo) {
if($db = new MySQLDB) {
$cDate = date("Y-m-d H:i:s",time());
$query = "INSERT tblAccounts(aToken,aTwitterID,aCreated) VALUES('".$_GET['oauth_token']."','{$twitterInfo->id}','".$cDate."')";
//echo $query."<br />";
$db->begin();
if(mysql_query($query)) {
$db->commit();
//return true;
return mysql_insert_id();
} else {
$db->rollback();
$this->logEvent("insertAccount","$twitterInfo->id","Error:".mysql_error());
return -1;
}
}
}
/*
* function: updateAccount()
* parameters: EpiTwitter -> twitterInfo
* description: update existing TJ account in tblAccounts
* return: true -> if query was successful
* false -> if query was unsuccessful, also calls logEvent();
*/
function updateAccount($twitterInfo) {
if($db = new MySQLDB) {
$query = "UPDATE tblAccounts SET aToken='".$_GET['oauth_token']."' WHERE aTwitterID=$twitterInfo->id;";
//echo $query;
$db->begin();
if(mysql_query($query)) {
$db->commit();
$query = "SELECT aID FROM tblAccounts WHERE aTwitterID=$twitterInfo->id;";
if($result = mysql_query($query)) {
$row = mysql_fetch_assoc($result);
return $row['aID'];
}
return true;
} else {
$db->rollback();
$this->logEvent("updateAccount",'".$twitterInfo->id."',"Error:".mysql_error());
return false;
}
}
}
/*
* function: logEvent()
* parameters: EpiTwitter -> twitterInfo
* vachar -> type: what type of logging message
* vachar -> id: for which twitter id
* vachar -> message: what is the message
* description: update Log errors and other abnormal events in the database
* return: 1 -> if query was successful
* 0 -> if query was unsuccessful, also calls logEvent();
*/
function logEvent($type, $id, $message) {
if($db = new MySQLDB) {
$db->begin();
$query = "INSERT INTO tblLog(lType,aTwitterID,lMessage) VALUES('$type','$id','$message');";
//echo $query."<br />";
if(mysql_query($query)) {
$db->commit();
return 1;
} else {
$db->rollback();
//$this->logEvent($type, $id, $message);
//Email admin
return 0;
}
}
}
function init_dump() {
echo "tj_account_id=>".$this->tj_account_id."<br />";
//echo "tj_tw_token=>".$this->tj_tw_token."<br />";
echo "tj_tw_id=>".$this->tj_tw_id."<br />";
echo "tj_tw_avatar=>".$this->tj_tw_avatar."<br />";
echo "tj_tw_name=>".$this->tj_tw_name."<br />";
echo "tj_tw_screenname=>".$this->tj_tw_screenname."<br />";
echo "tj_apiKey=>".$this->tj_apiKey."<br />";
echo "tj_aCycle=>".$this->tj_aCycle."<br />";
echo "set_sDefault=>".$this->set_sDefault."<br />";
echo "set_tEnt=>".$this->set_tEnt."<br />";
echo "set_tNews=>".$this->set_tNews."<br />";
echo "set_tBus=>".$this->set_tBus."<br />";
echo "set_tMusic=>".$this->set_tMusic."<br />";
echo "set_tTech=>".$this->set_tTech."<br />";
echo "set_tHealth=>".$this->set_tHealth."<br />";
echo "set_rUSAw=>".$this->set_rUSAw."<br />";
echo "set_rUSAc=>".$this->set_rUSAc."<br />";
echo "set_rUSAe=>".$this->set_rUSAe."<br />";
echo "set_rCANw=>".$this->set_rCANw."<br />";
echo "set_rCANc=>".$this->set_rCANc."<br />";
echo "set_rCANe=>".$this->set_rCANe."<br />";
}
}
?>