post.php 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107
  1. <?php
  2. /**
  3. * Este arquivo é parte do software linequest
  4. * Ambiente de questionários para a coleta de dados
  5. *
  6. * Laboratório de Informática na Educação - LInE
  7. * https://www.usp.br/line/
  8. *
  9. * Utilize os atributos definidos abaixo para
  10. * configurar o ambiente de questionários.
  11. *
  12. * @author Lucas Calion
  13. * @author Igor Félix
  14. */
  15. # Os dados podem ser submetidos para o linequest por
  16. # meio de requisições POST ou GET
  17. if ($_SERVER['REQUEST_METHOD'] === 'POST') {
  18. execute($_POST);
  19. } elseif ($_SERVER['REQUEST_METHOD'] === 'GET') {
  20. execute($_GET);
  21. }
  22. /**
  23. * Extrai todos os parâmetros enviados na requisição
  24. * @param $data - representa o conteúdo de $_POST ou $_GET
  25. */
  26. function execute ($data) {
  27. if (count($data) < 1) {
  28. echo print_error('empty_data');
  29. exit;
  30. }
  31. if (!isset($data['form'])) {
  32. echo print_error('key_missing');
  33. exit;
  34. }
  35. if (!isset($data['uuid'])) {
  36. echo print_error('key_missing');
  37. exit;
  38. }
  39. require_once('../controller/forms.php');
  40. $hash = $data['form'];
  41. // load question mapping
  42. $info = getQuestionaireInfo($hash);
  43. $mapping = loadQuestionsMapping($info['qid']);
  44. $texts = loadQuestionsText($info['qid']);
  45. foreach ($mapping as $map) {
  46. $id = "q$map->number";
  47. if(isset($data[$id]) && $data[$id] === $map->value) {
  48. $data[$id] = $map->text;
  49. }
  50. }
  51. foreach ($texts as $question) {
  52. $id = "q$question->number";
  53. $data[$question->text] = $data[$id];
  54. unset($data[$id]);
  55. }
  56. $data['form'] = $info['title'].'-'.$data['form'];
  57. $data["ip"] = get_user_ip();
  58. $data["timestamp"] = time();
  59. try {
  60. storeUserSubmission(json_encode($data, JSON_UNESCAPED_UNICODE), $info['qid'], $data['uuid']);
  61. } catch (Exception $e) {
  62. echo print_error($e->getMessage());
  63. exit;
  64. }
  65. header("Location: thanks.php?id=$hash");
  66. }
  67. /**
  68. * Imprime as mensagens de erro padrão:
  69. * @param $code - identifica o erro a ser retornado
  70. */
  71. function print_error ($code) {
  72. switch($code) {
  73. case 'key_missing':
  74. return "Error: The data could not be stored. <br>Reason: The 'form' parameter was not sent in the request. This parameter is required, it identifies which form this data is associated.";
  75. case 'empty_data':
  76. return "Error: The data could not be stored. <br>Reason: None parameter was sent in the request.<br>";
  77. }
  78. }
  79. function get_user_ip () {
  80. $ip = "";
  81. if (!empty($_SERVER['HTTP_CLIENT_IP'])) {
  82. $ip = $_SERVER['HTTP_CLIENT_IP'];
  83. } elseif (!empty($_SERVER['HTTP_X_FORWARDED_FOR'])) {
  84. $ip = $_SERVER['HTTP_X_FORWARDED_FOR'];
  85. } else {
  86. $ip = $_SERVER['REMOTE_ADDR'];
  87. }
  88. return $ip;
  89. }
  90. ?>