aboutsummaryrefslogtreecommitdiff
path: root/demo/components/class-application.php
blob: bdd6419165e7084eab8fc755c15e2eee88312c20 (plain) (blame)
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
<?php
/**
* Function of saving the token in a cookie.
* When you receive the new value clears all stored cookies.
* @param $token - The values of the token.
*/
function NewToken($token) {
  unset($_COOKIE); // Removes all
  SetCookie("BOT_TOKEN", $token); // Save a new cookie
}

/**
* Session initialization function.
* Searches saved session, producing a new
* init or returns zero on failure.
* @param $token - The values of the token.
* @param $bot - Initialized bot.
*/
function GetSession($token, $bot) {
  // Search the old session
  if (isset($_COOKIE['BOT_SESSION'])) {
    $session = $bot->session($_COOKIE['BOT_SESSION']);
  } else { // Open a new one
    $session = $bot->session();
    SetCookie("BOT_SESSION", $session);
  }

  // We issue results
  if (isset($session)) {
    return $session;
  } else {
    return 0;
  }
}

/**
* The function returns the current ID.
* Returns zero if no ID is stored.
*/
function GetID() {
  // Search current ID...
  if (isset($_COOKIE['CURRENT_ID'])) {
    $id = (int)$_COOKIE['CURRENT_ID'] + 1;
  // ...or returns zero
  } else {
    $id = 0;
  }
  // We issue results
  return $id;
}

/**
* The function overrides the current ID to
* the specified or the next. If any missing ID
* returns the one.
* @param $id - Current ID.
*/
function SetID($id) {
  // Process the specified ID...
  if (isset($id)) {
    $id = $id + 1;
  // ...Or are saved...
  } elseif (isset($_COOKIE['CURRENT_ID'])) {
    $id = (int)$_COOKIE['CURRENT_ID'] + 1;
  // ...Or return one
  } else {
    $id = 1;
  }
  SetCookie('CURRENT_ID', $id, time()+300); // Save the result
  // We issue results
  return $id;
}

/**
* The function maintains a history of conversations,
* using a database of cookie files.
* @param $currentid - Message ID.
* @param $textarea - Message text.
* @param $type - Who said (Man / Bot).
*/
function SavingStories($currentid, $textarea, $type) {
  // We form an array with values
  $cookie = array(
    'type' => $type,
    'textarea' => $textarea,
    'time' => time());
  // Save by encoding in JSON-string
  SetCookie("TALK".$currentid, json_encode($cookie), time()+60);
}

/**
* Function line formation.
* @param $id - Variable Message ID.
*/
function ShowRecord($id) {
  for ($i=0; $i < $id; $i++) {
    if (isset($_COOKIE['TALK'.$i])) {
      $cookie = json_decode($_COOKIE['TALK'.$i], true);
      echo("<tr>");
      echo("<td>".$cookie['type']."</td>");
      echo("<td>".$cookie['textarea']."</td>");
      echo("<td>".date("H:i:s", $cookie['time'])."</td>");
      echo("</tr>");
    }
  }
} ?>