Datenbank.cpp 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533
  1. #include "Datenbank.h"
  2. #include <iostream>
  3. // Inhalt der LSDatenbank Klasse aus Datenbank.h
  4. // Konstruktor
  5. MSDatenbank::MSDatenbank( InitDatei *zIni )
  6. {
  7. datenbank = new Datenbank( zIni->zWert( "DBBenutzer" )->getText(), zIni->zWert( "DBPasswort" )->getText(),
  8. zIni->zWert( "DBName" )->getText(), zIni->zWert( "DBIP" )->getText(),
  9. (unsigned short)TextZuInt( zIni->zWert( "DBPort" )->getText(), 10 ) );
  10. if( !datenbank->istOk() )
  11. {
  12. std::cout << "MS: Die Verbindung zur Datenbank konnte nicht hergestellt werden.\nDas Programm wird beendet.";
  13. exit( 1 );
  14. }
  15. InitializeCriticalSection( &cs );
  16. ref = 1;
  17. Text befehl = "SELECT port, admin_port FROM server WHERE id = ";
  18. befehl += zIni->zWert( "ServerId" )->getText();
  19. lock();
  20. datenbank->befehl( befehl );
  21. Result res = datenbank->getResult();
  22. unlock();
  23. if( res.zeilenAnzahl == 1 )
  24. {
  25. zIni->addWert( "ServerPort", res.values[ 0 ] );
  26. zIni->addWert( "AdminServerPort", res.values[ 1 ] );
  27. }
  28. res.destroy();
  29. }
  30. // Destruktor
  31. MSDatenbank::~MSDatenbank()
  32. {
  33. datenbank->release();
  34. DeleteCriticalSection( &cs );
  35. }
  36. // nicht constant
  37. void MSDatenbank::lock()
  38. {
  39. EnterCriticalSection( &cs );
  40. }
  41. void MSDatenbank::unlock()
  42. {
  43. LeaveCriticalSection( &cs );
  44. }
  45. int MSDatenbank::istAdministrator( const char *name, const char *passwort )
  46. {
  47. Text *befehl = new Text( "SELECT id FROM benutzer WHERE name = '" );
  48. Text n( name );
  49. n.ersetzen( "'", "''" );
  50. befehl->append( (char*)n );
  51. befehl->append( "' AND passwort = md5( '" );
  52. Text p( passwort );
  53. p.ersetzen( "'", "''" );
  54. befehl->append( (char*)p );
  55. befehl->append( "' )" );
  56. lock();
  57. datenbank->befehl( befehl->getText() );
  58. Result res = datenbank->getResult();
  59. unlock();
  60. befehl->release();
  61. int ret = 0;
  62. if( res.zeilenAnzahl > 0 )
  63. ret = TextZuInt( res.values[ 0 ].getText(), 10 );
  64. res.destroy();
  65. return ret;
  66. }
  67. bool MSDatenbank::adminHatRecht( int id, int recht )
  68. {
  69. Text *befehl = new Text( "SELECT * FROM benutzer_rechte WHERE benutzer_id = " );
  70. befehl->append( id );
  71. befehl->append( " AND rechte_id = " );
  72. befehl->append( recht );
  73. lock();
  74. datenbank->befehl( befehl->getText() );
  75. int ret = datenbank->getZeilenAnzahl();
  76. unlock();
  77. befehl->release();
  78. return ret != 0;
  79. }
  80. bool MSDatenbank::proveKlient( int num, int sNum )
  81. {
  82. Text *befehl = new Text( "SELECT * FROM server_client WHERE server_id = " );
  83. befehl->append( sNum );
  84. befehl->append( " AND client_id = " );
  85. befehl->append( num );
  86. lock();
  87. datenbank->befehl( befehl->getText() );
  88. Result res = datenbank->getResult();
  89. unlock();
  90. befehl->release();
  91. bool ret = 0;
  92. if( res.zeilenAnzahl == 1 )
  93. ret = 1;
  94. res.destroy();
  95. return ret;
  96. }
  97. Text *MSDatenbank::getKlientKey( int cId )
  98. {
  99. lock();
  100. if( !datenbank->befehl( Text( "SELECT schluessel FROM client WHERE id = " ) += cId ) )
  101. {
  102. unlock();
  103. return 0;
  104. }
  105. Result res = datenbank->getResult();
  106. unlock();
  107. if( !res.zeilenAnzahl )
  108. {
  109. res.destroy();
  110. return 0;
  111. }
  112. Text *ret = new Text( res.values[ 0 ].getText() );
  113. res.destroy();
  114. return ret;
  115. }
  116. void MSDatenbank::unregisterKlient( int num, int sNum )
  117. {
  118. Text *befehl = new Text( "DELETE FROM server_client WHERE client_id = " );
  119. befehl->append( num );
  120. befehl->append( " AND server_id = " );
  121. befehl->append( sNum );
  122. lock();
  123. datenbank->befehl( befehl->getText() );
  124. int za = datenbank->getZeilenAnzahl();
  125. unlock();
  126. if( za == 1 )
  127. {
  128. befehl->setText( "UPDATE server SET tasks = tasks - 1 WHERE id = " );
  129. befehl->append( sNum );
  130. lock();
  131. datenbank->befehl( befehl->getText() );
  132. unlock();
  133. }
  134. befehl->release();
  135. }
  136. bool MSDatenbank::setServerStatus( int id, int status )
  137. {
  138. Text *befehl = new Text( "UPDATE server SET server_status_id = " );
  139. *befehl += status;
  140. *befehl += "WHERE id = ";
  141. *befehl += id;
  142. lock();
  143. if( !datenbank->befehl( befehl->getText() ) )
  144. {
  145. unlock();
  146. befehl->release();
  147. return 0;
  148. }
  149. bool ret = datenbank->getZeilenAnzahl() != 0;
  150. unlock();
  151. befehl->release();
  152. return ret;
  153. }
  154. bool MSDatenbank::setMaxClients( int id, int maxC )
  155. {
  156. Text *befehl = new Text( "UPDATE server SET max_tasks = " );
  157. befehl->append( maxC );
  158. befehl->append( " WHERE id = " );
  159. befehl->append( id );
  160. lock();
  161. if( !datenbank->befehl( befehl->getText() ) )
  162. {
  163. unlock();
  164. befehl->release();
  165. return 0;
  166. }
  167. bool ret = datenbank->getZeilenAnzahl() > 0;
  168. unlock();
  169. befehl->release();
  170. return ret;
  171. }
  172. bool MSDatenbank::serverIstNichtPausiert( int id )
  173. {
  174. Text *befehl = new Text( "SELECT server_status_id FROM server WHERE id = " );
  175. befehl->append( id );
  176. lock();
  177. if( !datenbank->befehl( befehl->getText() ) )
  178. {
  179. unlock();
  180. befehl->release();
  181. return 0;
  182. }
  183. Result res = datenbank->getResult();
  184. unlock();
  185. befehl->release();
  186. if( !res.zeilenAnzahl )
  187. {
  188. res.destroy();
  189. return 0;
  190. }
  191. bool ret = (int)res.values[ 0 ] == 3;
  192. res.destroy();
  193. return ret;
  194. }
  195. int MSDatenbank::getAccountId( int clientNumber )
  196. {
  197. Text befehl = "SELECT account_id FROM account_client WHERE client_id = ";
  198. befehl += clientNumber;
  199. lock();
  200. if( !datenbank->befehl( befehl ) )
  201. {
  202. unlock();
  203. return 0;
  204. }
  205. Result res = datenbank->getResult();
  206. unlock();
  207. if( !res.zeilenAnzahl )
  208. return 0;
  209. int ret = res.values[ 0 ];
  210. res.destroy();
  211. return ret;
  212. }
  213. Text *MSDatenbank::getAccountName( int accountId )
  214. {
  215. Text befehl = "SELECT ruf_name FROM account WHERE id = ";
  216. befehl += accountId;
  217. lock();
  218. if( !datenbank->befehl( befehl ) )
  219. {
  220. unlock();
  221. return 0;
  222. }
  223. Result res = datenbank->getResult();
  224. unlock();
  225. if( !res.zeilenAnzahl )
  226. return 0;
  227. Text *ret = new Text( res.values[ 0 ].getText() );
  228. res.destroy();
  229. return ret;
  230. }
  231. int MSDatenbank::getMinigameOptionList( char *minigame, RCArray< Text > *zOptionList )
  232. {
  233. Text befehl = "SELECT a.options FROM minigame_option a, minigame b WHERE a.minigame_id = b.id AND b.name = '";
  234. Text m( minigame );
  235. m.ersetzen( "'", "''" );
  236. befehl += m;
  237. befehl += "' ORDER BY a.options";
  238. lock();
  239. if( !datenbank->befehl( befehl ) )
  240. {
  241. unlock();
  242. return 0;
  243. }
  244. Result res = datenbank->getResult();
  245. unlock();
  246. int anz = res.zeilenAnzahl;
  247. for( int i = 0; i < anz; i++ )
  248. zOptionList->add( new Text( (char*)res.values[ i ] ) );
  249. res.destroy();
  250. return anz;
  251. }
  252. int MSDatenbank::getMinigameBestscore( char *options, char *minigame, Text *zPlayer )
  253. {
  254. Text o( options );
  255. o.ersetzen( "'", "''" );
  256. Text m( minigame );
  257. m.ersetzen( "'", "''" );
  258. Text befehl = "SELECT b.score, a.ruf_name FROM account a, minigame_bestscore b, minigame_option o, minigame m "
  259. "WHERE m.id = o.minigame_id AND o.id = b.minigame_options_id AND a.id = b.account_id AND m.name = '";
  260. befehl += o;
  261. befehl += "' AND o.options = '";
  262. befehl += m;
  263. befehl += "'";
  264. lock();
  265. if( !datenbank->befehl( befehl ) )
  266. {
  267. unlock();
  268. return 0;
  269. }
  270. Result res = datenbank->getResult();
  271. unlock();
  272. if( !res.zeilenAnzahl )
  273. {
  274. res.destroy();
  275. return 0;
  276. }
  277. int ret = (int)res.values[ 0 ];
  278. zPlayer->setText( res.values[ 1 ] );
  279. res.destroy();
  280. return ret;
  281. }
  282. int MSDatenbank::getMinigameBestscore( char *minigame, Array< int > *zScoreList, RCArray< Text > *zPlayerList, RCArray< Text > *zOptionList )
  283. {
  284. Text m( minigame );
  285. m.ersetzen( "'", "''" );
  286. Text befehl = "SELECT b.score, a.ruf_name, o.options FROM account a, minigame_bestscore b, minigame_option o, minigame m "
  287. "WHERE m.id = o.minigame_id AND o.id = b.minigame_options_id AND a.id = b.account_id AND m.name = '";
  288. befehl += m;
  289. befehl += "' ORDER BY o.options, b.score";
  290. lock();
  291. if( !datenbank->befehl( befehl ) )
  292. {
  293. unlock();
  294. return 0;
  295. }
  296. Result res = datenbank->getResult();
  297. unlock();
  298. if( !res.zeilenAnzahl )
  299. {
  300. res.destroy();
  301. return 0;
  302. }
  303. int anz = res.zeilenAnzahl;
  304. for( int i = 0; i < anz; i++ )
  305. {
  306. zScoreList->add( (int)res.values[ i * 3 ] );
  307. zPlayerList->add( new Text( res.values[ i * 3 + 1 ] ) );
  308. zOptionList->add( new Text( res.values[ i * 3 + 2 ] ) );
  309. }
  310. res.destroy();
  311. return anz;
  312. }
  313. bool MSDatenbank::updateMinigameScore( int score, char *option, int cId, char *minigame, int sId, Text *zFileName )
  314. {
  315. Text o( option );
  316. o.ersetzen( "'", "''" );
  317. Text m( minigame );
  318. m.ersetzen( "'", "''" );
  319. Text befehl = "UPDATE minigame SET games_played = games_played + 1 WHERE name = '";
  320. befehl += m;
  321. befehl += "'";
  322. lock();
  323. if( !datenbank->befehl( befehl ) )
  324. {
  325. unlock();
  326. return 0;
  327. }
  328. unlock();
  329. befehl = "SELECT a.id FROM minigame_option a, minigame b WHERE a.minigame_id = b.id AND b.name = '";
  330. befehl += m;
  331. befehl += "' AND a.options = '";
  332. befehl += o;
  333. befehl += "'";
  334. lock();
  335. if( !datenbank->befehl( befehl ) )
  336. {
  337. unlock();
  338. return 0;
  339. }
  340. Result res = datenbank->getResult();
  341. unlock();
  342. if( !res.zeilenAnzahl )
  343. {
  344. res.destroy();
  345. return 0;
  346. }
  347. int optionId = res.values[ 0 ];
  348. *zFileName = optionId;
  349. *zFileName += ".mgc";
  350. res.destroy();
  351. befehl = "SELECT score FROM minigame_bestscore WHERE minigame_options_id = ";
  352. befehl += optionId;
  353. lock();
  354. if( !datenbank->befehl( befehl ) )
  355. {
  356. unlock();
  357. return 0;
  358. }
  359. res = datenbank->getResult();
  360. unlock();
  361. int anz = res.zeilenAnzahl;
  362. bool ret = !anz || (int)res.values[ 0 ] < score;
  363. res.destroy();
  364. if( ret )
  365. {
  366. if( anz )
  367. {
  368. befehl = "UPDATE minigame_bestscore b SET score = ";
  369. befehl += score;
  370. befehl += ", account_id = a.account_id, counter = counter + 1, minigame_server_id = ";
  371. befehl += sId;
  372. befehl += " FROM account_client a WHERE a.client_id = ";
  373. befehl += cId;
  374. befehl += " AND b.minigame_options_id = ";
  375. befehl += optionId;
  376. }
  377. else
  378. {
  379. befehl = "INSERT INTO minigame_bestscore( account_id, score, minigame_options_id, minigame_server_id ) SELECT a.account_id AS account_id, ";
  380. befehl += score;
  381. befehl += " AS score, ";
  382. befehl += optionId;
  383. befehl += " AS minigame_options_id, ";
  384. befehl += sId;
  385. befehl += " AS minigame_server_id FROM account_client a WHERE a.client_id = ";
  386. befehl += cId;
  387. }
  388. lock();
  389. if( !datenbank->befehl( befehl ) )
  390. {
  391. unlock();
  392. return 0;
  393. }
  394. unlock();
  395. befehl = "UPDATE account b SET kupfer = b.kupfer + a.counter FROM minigame_bestscore a WHERE a.account_id = b.id AND a.minigame_options_id = ";
  396. befehl += optionId;
  397. lock();
  398. if( !datenbank->befehl( befehl ) )
  399. {
  400. unlock();
  401. return 0;
  402. }
  403. unlock();
  404. }
  405. return ret;
  406. }
  407. Text *MSDatenbank::getMinigameCaptureFileName( char *option, char *minigame )
  408. {
  409. Text o( option );
  410. o.ersetzen( "'", "''" );
  411. Text m( minigame );
  412. m.ersetzen( "'", "''" );
  413. Text befehl = "SELECT a.id FROM minigame_option a, minigame b WHERE a.minigame_id = b.id AND b.name = '";
  414. befehl += m;
  415. befehl += "' AND a.options = '";
  416. befehl += o;
  417. befehl += "'";
  418. lock();
  419. if( !datenbank->befehl( befehl ) )
  420. {
  421. unlock();
  422. return 0;
  423. }
  424. Result res = datenbank->getResult();
  425. unlock();
  426. if( !res.zeilenAnzahl )
  427. {
  428. res.destroy();
  429. return 0;
  430. }
  431. int optionId = res.values[ 0 ];
  432. Text *fileName = new Text();
  433. fileName->append( optionId );
  434. fileName->append( ".mgc" );
  435. res.destroy();
  436. return fileName;
  437. }
  438. int MSDatenbank::getMinigameServer( char *minigame, char *option )
  439. {
  440. Text o( option );
  441. o.ersetzen( "'", "''" );
  442. Text m( minigame );
  443. m.ersetzen( "'", "''" );
  444. Text befehl = "SELECT a.id FROM server a, minigame_bestscore b, minigame_option c, minigame d WHERE a.id = b.minigame_server_id AND d.id = c.minigame_id AND b.minigame_options_id = c.id AND c.options = '";
  445. befehl += o;
  446. befehl += "' AND d.name = '";
  447. befehl += m;
  448. befehl += "'";
  449. lock();
  450. if( !datenbank->befehl( befehl ) )
  451. {
  452. unlock();
  453. return 0;
  454. }
  455. Result res = datenbank->getResult();
  456. unlock();
  457. int ret = 0;
  458. if( res.zeilenAnzahl )
  459. ret = res.values[ 0 ];
  460. res.destroy();
  461. return ret;
  462. }
  463. bool MSDatenbank::getMinigameServer( char *minigame, char *option, Text *zIp, Text *zPort )
  464. {
  465. Text o( option );
  466. o.ersetzen( "'", "''" );
  467. Text m( minigame );
  468. m.ersetzen( "'", "''" );
  469. Text befehl = "SELECT a.ip, a.port FROM server a, minigame_bestscore b, minigame_option c, minigame d WHERE a.id = b.minigame_server_id AND d.id = c.minigame_id AND b.minigame_options_id = c.id AND c.options = '";
  470. befehl += o;
  471. befehl += "' AND d.name = '";
  472. befehl += m;
  473. befehl += "'";
  474. lock();
  475. if( !datenbank->befehl( befehl ) )
  476. {
  477. unlock();
  478. return 0;
  479. }
  480. Result res = datenbank->getResult();
  481. unlock();
  482. if( res.zeilenAnzahl )
  483. {
  484. zIp->setText( (char*)res.values[ 0 ] );
  485. zPort->setText( (char*)res.values[ 1 ] );
  486. res.destroy();
  487. return 1;
  488. }
  489. res.destroy();
  490. return 0;
  491. }
  492. // constant
  493. Text *MSDatenbank::getLetzterFehler() const
  494. {
  495. return datenbank->getLetzterFehler();
  496. }
  497. // Reference Counting
  498. MSDatenbank *MSDatenbank::getThis()
  499. {
  500. ref++;
  501. return this;
  502. }
  503. MSDatenbank *MSDatenbank::release()
  504. {
  505. ref--;
  506. if( !ref )
  507. delete this;
  508. return 0;
  509. }