/libraries/classes/RelationCleanup.php

http://github.com/phpmyadmin/phpmyadmin · PHP · 378 lines · 298 code · 45 blank · 35 comment · 28 complexity · 311e49ab401b8fac4b1ac74f8cbae2df MD5 · raw file

  1. <?php
  2. /**
  3. * Set of functions used for cleaning up phpMyAdmin tables
  4. */
  5. declare(strict_types=1);
  6. namespace PhpMyAdmin;
  7. /**
  8. * PhpMyAdmin\RelationCleanup class
  9. */
  10. class RelationCleanup
  11. {
  12. /** @var Relation */
  13. public $relation;
  14. /** @var DatabaseInterface */
  15. public $dbi;
  16. /**
  17. * @param DatabaseInterface $dbi DatabaseInterface object
  18. * @param Relation $relation Relation object
  19. */
  20. public function __construct($dbi, Relation $relation)
  21. {
  22. $this->dbi = $dbi;
  23. $this->relation = $relation;
  24. }
  25. /**
  26. * Cleanup column related relation stuff
  27. *
  28. * @param string $db database name
  29. * @param string $table table name
  30. * @param string $column column name
  31. */
  32. public function column($db, $table, $column): void
  33. {
  34. $cfgRelation = $this->relation->getRelationsParam();
  35. if ($cfgRelation['commwork']) {
  36. $remove_query = 'DELETE FROM '
  37. . Util::backquote($cfgRelation['db'])
  38. . '.' . Util::backquote($cfgRelation['column_info'])
  39. . ' WHERE db_name = \'' . $this->dbi->escapeString($db) . '\''
  40. . ' AND table_name = \'' . $this->dbi->escapeString($table)
  41. . '\''
  42. . ' AND column_name = \'' . $this->dbi->escapeString($column)
  43. . '\'';
  44. $this->relation->queryAsControlUser($remove_query);
  45. }
  46. if ($cfgRelation['displaywork']) {
  47. $remove_query = 'DELETE FROM '
  48. . Util::backquote($cfgRelation['db'])
  49. . '.' . Util::backquote($cfgRelation['table_info'])
  50. . ' WHERE db_name = \'' . $this->dbi->escapeString($db) . '\''
  51. . ' AND table_name = \'' . $this->dbi->escapeString($table)
  52. . '\''
  53. . ' AND display_field = \'' . $this->dbi->escapeString($column)
  54. . '\'';
  55. $this->relation->queryAsControlUser($remove_query);
  56. }
  57. if (! $cfgRelation['relwork']) {
  58. return;
  59. }
  60. $remove_query = 'DELETE FROM '
  61. . Util::backquote($cfgRelation['db'])
  62. . '.' . Util::backquote($cfgRelation['relation'])
  63. . ' WHERE master_db = \'' . $this->dbi->escapeString($db)
  64. . '\''
  65. . ' AND master_table = \'' . $this->dbi->escapeString($table)
  66. . '\''
  67. . ' AND master_field = \'' . $this->dbi->escapeString($column)
  68. . '\'';
  69. $this->relation->queryAsControlUser($remove_query);
  70. $remove_query = 'DELETE FROM '
  71. . Util::backquote($cfgRelation['db'])
  72. . '.' . Util::backquote($cfgRelation['relation'])
  73. . ' WHERE foreign_db = \'' . $this->dbi->escapeString($db)
  74. . '\''
  75. . ' AND foreign_table = \'' . $this->dbi->escapeString($table)
  76. . '\''
  77. . ' AND foreign_field = \'' . $this->dbi->escapeString($column)
  78. . '\'';
  79. $this->relation->queryAsControlUser($remove_query);
  80. }
  81. /**
  82. * Cleanup table related relation stuff
  83. *
  84. * @param string $db database name
  85. * @param string $table table name
  86. */
  87. public function table($db, $table): void
  88. {
  89. $cfgRelation = $this->relation->getRelationsParam();
  90. if ($cfgRelation['commwork']) {
  91. $remove_query = 'DELETE FROM '
  92. . Util::backquote($cfgRelation['db'])
  93. . '.' . Util::backquote($cfgRelation['column_info'])
  94. . ' WHERE db_name = \'' . $this->dbi->escapeString($db) . '\''
  95. . ' AND table_name = \'' . $this->dbi->escapeString($table)
  96. . '\'';
  97. $this->relation->queryAsControlUser($remove_query);
  98. }
  99. if ($cfgRelation['displaywork']) {
  100. $remove_query = 'DELETE FROM '
  101. . Util::backquote($cfgRelation['db'])
  102. . '.' . Util::backquote($cfgRelation['table_info'])
  103. . ' WHERE db_name = \'' . $this->dbi->escapeString($db) . '\''
  104. . ' AND table_name = \'' . $this->dbi->escapeString($table)
  105. . '\'';
  106. $this->relation->queryAsControlUser($remove_query);
  107. }
  108. if ($cfgRelation['pdfwork']) {
  109. $remove_query = 'DELETE FROM '
  110. . Util::backquote($cfgRelation['db'])
  111. . '.' . Util::backquote($cfgRelation['table_coords'])
  112. . ' WHERE db_name = \'' . $this->dbi->escapeString($db) . '\''
  113. . ' AND table_name = \'' . $this->dbi->escapeString($table)
  114. . '\'';
  115. $this->relation->queryAsControlUser($remove_query);
  116. }
  117. if ($cfgRelation['relwork']) {
  118. $remove_query = 'DELETE FROM '
  119. . Util::backquote($cfgRelation['db'])
  120. . '.' . Util::backquote($cfgRelation['relation'])
  121. . ' WHERE master_db = \'' . $this->dbi->escapeString($db)
  122. . '\''
  123. . ' AND master_table = \'' . $this->dbi->escapeString($table)
  124. . '\'';
  125. $this->relation->queryAsControlUser($remove_query);
  126. $remove_query = 'DELETE FROM '
  127. . Util::backquote($cfgRelation['db'])
  128. . '.' . Util::backquote($cfgRelation['relation'])
  129. . ' WHERE foreign_db = \'' . $this->dbi->escapeString($db)
  130. . '\''
  131. . ' AND foreign_table = \'' . $this->dbi->escapeString($table)
  132. . '\'';
  133. $this->relation->queryAsControlUser($remove_query);
  134. }
  135. if ($cfgRelation['uiprefswork']) {
  136. $remove_query = 'DELETE FROM '
  137. . Util::backquote($cfgRelation['db'])
  138. . '.' . Util::backquote($cfgRelation['table_uiprefs'])
  139. . ' WHERE db_name = \'' . $this->dbi->escapeString($db) . '\''
  140. . ' AND table_name = \'' . $this->dbi->escapeString($table)
  141. . '\'';
  142. $this->relation->queryAsControlUser($remove_query);
  143. }
  144. if (! $cfgRelation['navwork']) {
  145. return;
  146. }
  147. $remove_query = 'DELETE FROM '
  148. . Util::backquote($cfgRelation['db'])
  149. . '.' . Util::backquote($cfgRelation['navigationhiding'])
  150. . ' WHERE db_name = \'' . $this->dbi->escapeString($db) . '\''
  151. . ' AND (table_name = \'' . $this->dbi->escapeString($table)
  152. . '\''
  153. . ' OR (item_name = \'' . $this->dbi->escapeString($table)
  154. . '\''
  155. . ' AND item_type = \'table\'))';
  156. $this->relation->queryAsControlUser($remove_query);
  157. }
  158. /**
  159. * Cleanup database related relation stuff
  160. *
  161. * @param string $db database name
  162. */
  163. public function database($db): void
  164. {
  165. $cfgRelation = $this->relation->getRelationsParam();
  166. if ($cfgRelation['commwork']) {
  167. $remove_query = 'DELETE FROM '
  168. . Util::backquote($cfgRelation['db'])
  169. . '.' . Util::backquote($cfgRelation['column_info'])
  170. . ' WHERE db_name = \'' . $this->dbi->escapeString($db) . '\'';
  171. $this->relation->queryAsControlUser($remove_query);
  172. }
  173. if ($cfgRelation['bookmarkwork']) {
  174. $remove_query = 'DELETE FROM '
  175. . Util::backquote($cfgRelation['db'])
  176. . '.' . Util::backquote($cfgRelation['bookmark'])
  177. . ' WHERE dbase = \'' . $this->dbi->escapeString($db) . '\'';
  178. $this->relation->queryAsControlUser($remove_query);
  179. }
  180. if ($cfgRelation['displaywork']) {
  181. $remove_query = 'DELETE FROM '
  182. . Util::backquote($cfgRelation['db'])
  183. . '.' . Util::backquote($cfgRelation['table_info'])
  184. . ' WHERE db_name = \'' . $this->dbi->escapeString($db) . '\'';
  185. $this->relation->queryAsControlUser($remove_query);
  186. }
  187. if ($cfgRelation['pdfwork']) {
  188. $remove_query = 'DELETE FROM '
  189. . Util::backquote($cfgRelation['db'])
  190. . '.' . Util::backquote($cfgRelation['pdf_pages'])
  191. . ' WHERE db_name = \'' . $this->dbi->escapeString($db) . '\'';
  192. $this->relation->queryAsControlUser($remove_query);
  193. $remove_query = 'DELETE FROM '
  194. . Util::backquote($cfgRelation['db'])
  195. . '.' . Util::backquote($cfgRelation['table_coords'])
  196. . ' WHERE db_name = \'' . $this->dbi->escapeString($db) . '\'';
  197. $this->relation->queryAsControlUser($remove_query);
  198. }
  199. if ($cfgRelation['relwork']) {
  200. $remove_query = 'DELETE FROM '
  201. . Util::backquote($cfgRelation['db'])
  202. . '.' . Util::backquote($cfgRelation['relation'])
  203. . ' WHERE master_db = \''
  204. . $this->dbi->escapeString($db) . '\'';
  205. $this->relation->queryAsControlUser($remove_query);
  206. $remove_query = 'DELETE FROM '
  207. . Util::backquote($cfgRelation['db'])
  208. . '.' . Util::backquote($cfgRelation['relation'])
  209. . ' WHERE foreign_db = \'' . $this->dbi->escapeString($db)
  210. . '\'';
  211. $this->relation->queryAsControlUser($remove_query);
  212. }
  213. if ($cfgRelation['uiprefswork']) {
  214. $remove_query = 'DELETE FROM '
  215. . Util::backquote($cfgRelation['db'])
  216. . '.' . Util::backquote($cfgRelation['table_uiprefs'])
  217. . ' WHERE db_name = \'' . $this->dbi->escapeString($db) . '\'';
  218. $this->relation->queryAsControlUser($remove_query);
  219. }
  220. if ($cfgRelation['navwork']) {
  221. $remove_query = 'DELETE FROM '
  222. . Util::backquote($cfgRelation['db'])
  223. . '.' . Util::backquote($cfgRelation['navigationhiding'])
  224. . ' WHERE db_name = \'' . $this->dbi->escapeString($db) . '\'';
  225. $this->relation->queryAsControlUser($remove_query);
  226. }
  227. if ($cfgRelation['savedsearcheswork']) {
  228. $remove_query = 'DELETE FROM '
  229. . Util::backquote($cfgRelation['db'])
  230. . '.' . Util::backquote($cfgRelation['savedsearches'])
  231. . ' WHERE db_name = \'' . $this->dbi->escapeString($db) . '\'';
  232. $this->relation->queryAsControlUser($remove_query);
  233. }
  234. if (! $cfgRelation['centralcolumnswork']) {
  235. return;
  236. }
  237. $remove_query = 'DELETE FROM '
  238. . Util::backquote($cfgRelation['db'])
  239. . '.' . Util::backquote($cfgRelation['central_columns'])
  240. . ' WHERE db_name = \'' . $this->dbi->escapeString($db) . '\'';
  241. $this->relation->queryAsControlUser($remove_query);
  242. }
  243. /**
  244. * Cleanup user related relation stuff
  245. *
  246. * @param string $username username
  247. */
  248. public function user($username): void
  249. {
  250. $cfgRelation = $this->relation->getRelationsParam();
  251. if ($cfgRelation['bookmarkwork']) {
  252. $remove_query = 'DELETE FROM '
  253. . Util::backquote($cfgRelation['db'])
  254. . '.' . Util::backquote($cfgRelation['bookmark'])
  255. . " WHERE `user` = '" . $this->dbi->escapeString($username)
  256. . "'";
  257. $this->relation->queryAsControlUser($remove_query);
  258. }
  259. if ($cfgRelation['historywork']) {
  260. $remove_query = 'DELETE FROM '
  261. . Util::backquote($cfgRelation['db'])
  262. . '.' . Util::backquote($cfgRelation['history'])
  263. . " WHERE `username` = '" . $this->dbi->escapeString($username)
  264. . "'";
  265. $this->relation->queryAsControlUser($remove_query);
  266. }
  267. if ($cfgRelation['recentwork']) {
  268. $remove_query = 'DELETE FROM '
  269. . Util::backquote($cfgRelation['db'])
  270. . '.' . Util::backquote($cfgRelation['recent'])
  271. . " WHERE `username` = '" . $this->dbi->escapeString($username)
  272. . "'";
  273. $this->relation->queryAsControlUser($remove_query);
  274. }
  275. if ($cfgRelation['favoritework']) {
  276. $remove_query = 'DELETE FROM '
  277. . Util::backquote($cfgRelation['db'])
  278. . '.' . Util::backquote($cfgRelation['favorite'])
  279. . " WHERE `username` = '" . $this->dbi->escapeString($username)
  280. . "'";
  281. $this->relation->queryAsControlUser($remove_query);
  282. }
  283. if ($cfgRelation['uiprefswork']) {
  284. $remove_query = 'DELETE FROM '
  285. . Util::backquote($cfgRelation['db'])
  286. . '.' . Util::backquote($cfgRelation['table_uiprefs'])
  287. . " WHERE `username` = '" . $this->dbi->escapeString($username)
  288. . "'";
  289. $this->relation->queryAsControlUser($remove_query);
  290. }
  291. if ($cfgRelation['userconfigwork']) {
  292. $remove_query = 'DELETE FROM '
  293. . Util::backquote($cfgRelation['db'])
  294. . '.' . Util::backquote($cfgRelation['userconfig'])
  295. . " WHERE `username` = '" . $this->dbi->escapeString($username)
  296. . "'";
  297. $this->relation->queryAsControlUser($remove_query);
  298. }
  299. if ($cfgRelation['menuswork']) {
  300. $remove_query = 'DELETE FROM '
  301. . Util::backquote($cfgRelation['db'])
  302. . '.' . Util::backquote($cfgRelation['users'])
  303. . " WHERE `username` = '" . $this->dbi->escapeString($username)
  304. . "'";
  305. $this->relation->queryAsControlUser($remove_query);
  306. }
  307. if ($cfgRelation['navwork']) {
  308. $remove_query = 'DELETE FROM '
  309. . Util::backquote($cfgRelation['db'])
  310. . '.' . Util::backquote($cfgRelation['navigationhiding'])
  311. . " WHERE `username` = '" . $this->dbi->escapeString($username)
  312. . "'";
  313. $this->relation->queryAsControlUser($remove_query);
  314. }
  315. if ($cfgRelation['savedsearcheswork']) {
  316. $remove_query = 'DELETE FROM '
  317. . Util::backquote($cfgRelation['db'])
  318. . '.' . Util::backquote($cfgRelation['savedsearches'])
  319. . " WHERE `username` = '" . $this->dbi->escapeString($username)
  320. . "'";
  321. $this->relation->queryAsControlUser($remove_query);
  322. }
  323. if (! $cfgRelation['designersettingswork']) {
  324. return;
  325. }
  326. $remove_query = 'DELETE FROM '
  327. . Util::backquote($cfgRelation['db'])
  328. . '.' . Util::backquote($cfgRelation['designer_settings'])
  329. . " WHERE `username` = '" . $this->dbi->escapeString($username)
  330. . "'";
  331. $this->relation->queryAsControlUser($remove_query);
  332. }
  333. }