Datenbank.cpp 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495
  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::getMinigameOptionList( char *minigame, RCArray< Text > *zOptionList )
  196. {
  197. Text befehl = "SELECT a.options FROM minigame_option a, minigame b WHERE a.minigame_id = b.id AND b.name = '";
  198. Text m( minigame );
  199. m.ersetzen( "'", "''" );
  200. befehl += m;
  201. befehl += "' ORDER BY a.options";
  202. lock();
  203. if( !datenbank->befehl( befehl ) )
  204. {
  205. unlock();
  206. return 0;
  207. }
  208. Result res = datenbank->getResult();
  209. unlock();
  210. int anz = res.zeilenAnzahl;
  211. for( int i = 0; i < anz; i++ )
  212. zOptionList->add( new Text( (char*)res.values[ i ] ) );
  213. res.destroy();
  214. return anz;
  215. }
  216. int MSDatenbank::getMinigameBestscore( char *options, char *minigame, Text *zPlayer )
  217. {
  218. Text o( options );
  219. o.ersetzen( "'", "''" );
  220. Text m( minigame );
  221. m.ersetzen( "'", "''" );
  222. Text befehl = "SELECT b.score, a.ruf_name FROM account a, minigame_bestscore b, minigame_option o, minigame m "
  223. "WHERE m.id = o.minigame_id AND o.id = b.minigame_options_id AND a.id = b.account_id AND m.name = '";
  224. befehl += o;
  225. befehl += "' AND o.options = '";
  226. befehl += m;
  227. befehl += "'";
  228. lock();
  229. if( !datenbank->befehl( befehl ) )
  230. {
  231. unlock();
  232. return 0;
  233. }
  234. Result res = datenbank->getResult();
  235. unlock();
  236. if( !res.zeilenAnzahl )
  237. {
  238. res.destroy();
  239. return 0;
  240. }
  241. int ret = (int)res.values[ 0 ];
  242. zPlayer->setText( res.values[ 1 ] );
  243. res.destroy();
  244. return ret;
  245. }
  246. int MSDatenbank::getMinigameBestscore( char *minigame, Array< int > *zScoreList, RCArray< Text > *zPlayerList, RCArray< Text > *zOptionList )
  247. {
  248. Text m( minigame );
  249. m.ersetzen( "'", "''" );
  250. Text befehl = "SELECT b.score, a.ruf_name, o.options FROM account a, minigame_bestscore b, minigame_option o, minigame m "
  251. "WHERE m.id = o.minigame_id AND o.id = b.minigame_options_id AND a.id = b.account_id AND m.name = '";
  252. befehl += m;
  253. befehl += "' ORDER BY o.options, b.score";
  254. lock();
  255. if( !datenbank->befehl( befehl ) )
  256. {
  257. unlock();
  258. return 0;
  259. }
  260. Result res = datenbank->getResult();
  261. unlock();
  262. if( !res.zeilenAnzahl )
  263. {
  264. res.destroy();
  265. return 0;
  266. }
  267. int anz = res.zeilenAnzahl;
  268. for( int i = 0; i < anz; i++ )
  269. {
  270. zScoreList->add( (int)res.values[ i * 3 ] );
  271. zPlayerList->add( new Text( res.values[ i * 3 + 1 ] ) );
  272. zOptionList->add( new Text( res.values[ i * 3 + 2 ] ) );
  273. }
  274. res.destroy();
  275. return anz;
  276. }
  277. bool MSDatenbank::updateMinigameScore( int score, char *option, int cId, char *minigame, int sId, Text *zFileName )
  278. {
  279. Text o( option );
  280. o.ersetzen( "'", "''" );
  281. Text m( minigame );
  282. m.ersetzen( "'", "''" );
  283. Text befehl = "UPDATE minigame SET games_played = games_played + 1 WHERE name = '";
  284. befehl += m;
  285. befehl += "'";
  286. lock();
  287. if( !datenbank->befehl( befehl ) )
  288. {
  289. unlock();
  290. return 0;
  291. }
  292. unlock();
  293. befehl = "SELECT a.id FROM minigame_option a, minigame b WHERE a.minigame_id = b.id AND b.name = '";
  294. befehl += m;
  295. befehl += "' AND a.options = '";
  296. befehl += o;
  297. befehl += "'";
  298. lock();
  299. if( !datenbank->befehl( befehl ) )
  300. {
  301. unlock();
  302. return 0;
  303. }
  304. Result res = datenbank->getResult();
  305. unlock();
  306. if( !res.zeilenAnzahl )
  307. {
  308. res.destroy();
  309. return 0;
  310. }
  311. int optionId = res.values[ 0 ];
  312. *zFileName = optionId;
  313. *zFileName += ".mgc";
  314. res.destroy();
  315. befehl = "SELECT score FROM minigame_bestscore WHERE minigame_options_id = ";
  316. befehl += optionId;
  317. lock();
  318. if( !datenbank->befehl( befehl ) )
  319. {
  320. unlock();
  321. return 0;
  322. }
  323. res = datenbank->getResult();
  324. unlock();
  325. int anz = res.zeilenAnzahl;
  326. bool ret = !anz || (int)res.values[ 0 ] < score;
  327. res.destroy();
  328. if( ret )
  329. {
  330. if( anz )
  331. {
  332. befehl = "UPDATE minigame_bestscore b SET score = ";
  333. befehl += score;
  334. befehl += ", account_id = a.account_id, counter = counter + 1, minigame_server_id = ";
  335. befehl += sId;
  336. befehl += " FROM account_client a WHERE a.client_id = ";
  337. befehl += cId;
  338. befehl += " AND b.minigame_options_id = ";
  339. befehl += optionId;
  340. }
  341. else
  342. {
  343. befehl = "INSERT INTO minigame_bestscore( account_id, score, minigame_options_id, minigame_server_id ) SELECT a.account_id AS account_id, ";
  344. befehl += score;
  345. befehl += " AS score, ";
  346. befehl += optionId;
  347. befehl += " AS minigame_options_id, ";
  348. befehl += sId;
  349. befehl += " AS minigame_server_id FROM account_client a WHERE a.client_id = ";
  350. befehl += cId;
  351. }
  352. lock();
  353. if( !datenbank->befehl( befehl ) )
  354. {
  355. unlock();
  356. return 0;
  357. }
  358. unlock();
  359. 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 = ";
  360. befehl += optionId;
  361. lock();
  362. if( !datenbank->befehl( befehl ) )
  363. {
  364. unlock();
  365. return 0;
  366. }
  367. unlock();
  368. }
  369. return ret;
  370. }
  371. Text *MSDatenbank::getMinigameCaptureFileName( char *option, char *minigame )
  372. {
  373. Text o( option );
  374. o.ersetzen( "'", "''" );
  375. Text m( minigame );
  376. m.ersetzen( "'", "''" );
  377. Text befehl = "SELECT a.id FROM minigame_option a, minigame b WHERE a.minigame_id = b.id AND b.name = '";
  378. befehl += m;
  379. befehl += "' AND a.options = '";
  380. befehl += o;
  381. befehl += "'";
  382. lock();
  383. if( !datenbank->befehl( befehl ) )
  384. {
  385. unlock();
  386. return 0;
  387. }
  388. Result res = datenbank->getResult();
  389. unlock();
  390. if( !res.zeilenAnzahl )
  391. {
  392. res.destroy();
  393. return 0;
  394. }
  395. int optionId = res.values[ 0 ];
  396. Text *fileName = new Text();
  397. fileName->append( optionId );
  398. fileName->append( ".mgc" );
  399. res.destroy();
  400. return fileName;
  401. }
  402. int MSDatenbank::getMinigameServer( char *minigame, char *option )
  403. {
  404. Text o( option );
  405. o.ersetzen( "'", "''" );
  406. Text m( minigame );
  407. m.ersetzen( "'", "''" );
  408. 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 = '";
  409. befehl += o;
  410. befehl += "' AND d.name = '";
  411. befehl += m;
  412. befehl += "'";
  413. lock();
  414. if( !datenbank->befehl( befehl ) )
  415. {
  416. unlock();
  417. return 0;
  418. }
  419. Result res = datenbank->getResult();
  420. unlock();
  421. int ret = 0;
  422. if( res.zeilenAnzahl )
  423. ret = res.values[ 0 ];
  424. res.destroy();
  425. return ret;
  426. }
  427. bool MSDatenbank::getMinigameServer( char *minigame, char *option, Text *zIp, Text *zPort )
  428. {
  429. Text o( option );
  430. o.ersetzen( "'", "''" );
  431. Text m( minigame );
  432. m.ersetzen( "'", "''" );
  433. 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 = '";
  434. befehl += o;
  435. befehl += "' AND d.name = '";
  436. befehl += m;
  437. befehl += "'";
  438. lock();
  439. if( !datenbank->befehl( befehl ) )
  440. {
  441. unlock();
  442. return 0;
  443. }
  444. Result res = datenbank->getResult();
  445. unlock();
  446. if( res.zeilenAnzahl )
  447. {
  448. zIp->setText( (char*)res.values[ 0 ] );
  449. zPort->setText( (char*)res.values[ 1 ] );
  450. res.destroy();
  451. return 1;
  452. }
  453. res.destroy();
  454. return 0;
  455. }
  456. // constant
  457. Text *MSDatenbank::getLetzterFehler() const
  458. {
  459. return datenbank->getLetzterFehler();
  460. }
  461. // Reference Counting
  462. MSDatenbank *MSDatenbank::getThis()
  463. {
  464. ref++;
  465. return this;
  466. }
  467. MSDatenbank *MSDatenbank::release()
  468. {
  469. ref--;
  470. if( !ref )
  471. delete this;
  472. return 0;
  473. }