-
Notifications
You must be signed in to change notification settings - Fork 4
/
sendMessage.php
166 lines (137 loc) · 5.79 KB
/
sendMessage.php
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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
<?php
/**
* Apache License 2.0
* @author Trapenok Victor, [email protected], 89244269357
* I will be glad to new orders for the development of anything.
*
* Skype:Levhav
* 89244269357
*
* https://github.com/Levhav/Star.Comet-Chat
*/
/**
* Отправляет сообщение
*/
include './config.php';
include './common.php';
$user_id = getUserIdOrDie();
$message = htmlspecialchars($_POST['message']);
if(empty($message) && !isset($_FILES["img"]))
{
die("Не верный параметр message");
}
$to_user_id = (int)$_POST['user_id_to'];
if($to_user_id <= 0)
{
die("Не верный параметр user_id_to");
}
if($user_id == $to_user_id)
{
die("Не надо писать самому себе");
}
if(isset($_FILES["img"]))
{
if($_FILES["img"]['size'] > getConfArray('max_img_size'))
{
die("Не правильный размер ".$_FILES["img"]['size']);
}
$fileName = $user_id."_".$to_user_id."_".floor(microtime(true)*1000);
if($_FILES["img"]['type'] == "image/jpeg" )
{
$fileName.=".jpeg";
}
else if( $_FILES["img"]['type'] == "image/png")
{
$fileName.=".png";
}
else
{
die("Не правильный тип ".$_FILES["img"]['type']);
}
if (!move_uploaded_file($_FILES["img"]['tmp_name'], $_SERVER['DOCUMENT_ROOT']."/".getConfArray('file_dir')."/".$fileName))
{
die("Ошибка от move_uploaded_file");
}
$message = "[[img=".$fileName."]]" . $message;
}
/**
* тип связи пользователей (избранное забанен нейтральная)
*/
$relation_type = 0;
/**
* Если не false то это первое сообщение в диалоге и переменная хранит информацию о пользователе
*/
$NewContactInfo = false;
// Определяем тип связи пользователей (избранное забанен нейтральная)
$result = mysqli_query(StarCometChat::conf()->getDB(),
"SELECT type FROM `users_relations` where (user_id = ".$to_user_id." and to_user_id = ".$user_id.") limit 1 ");
if(!mysqli_num_rows($result))
{
// Если связи нет то добавляем её
mysqli_query(StarCometChat::conf()->getDB(),"INSERT INTO `users_relations` (`user_id`, `to_user_id`, `type`) VALUES ('".$user_id."', '".$to_user_id."', '0'), ('".$to_user_id."', '".$user_id."', '0');");
$NewContactInfo = getUsersInfo(array($user_id, $to_user_id));
$NewContactInfo[0]['login'] = preg_replace("/^.*?([^\/]*)$/usi", "$1", $NewContactInfo[0]['login']);
// Добавляем запись в таблицу пользователей для сохранения связки id -> логина
mysqli_query(StarCometChat::conf()->getDB(),"INSERT INTO `users` (`id`, `login`, `avatar_url`) VALUES ('".$NewContactInfo[0]['user_id']."', '".mysqli_real_escape_string(StarCometChat::conf()->getDB(),$NewContactInfo[0]['login'])."', '".mysqli_real_escape_string(StarCometChat::conf()->getDB(),$NewContactInfo[0]['avatar_url'])."');");
if($user_id != $to_user_id)
{
$NewContactInfo[1]['login'] = preg_replace("/^.*?([^\/]*)$/usi", "$1", $NewContactInfo[1]['login']);
// Добавляем запись в таблицу пользователей для сохранения связки id -> логина
mysqli_query(StarCometChat::conf()->getDB(),
"INSERT INTO `users` (`id`, `login`, `avatar_url`) VALUES ('".$NewContactInfo[1]['user_id']."', '".mysqli_real_escape_string(StarCometChat::conf()->getDB(),$NewContactInfo[1]['login'])."', '".mysqli_real_escape_string(StarCometChat::conf()->getDB(),$NewContactInfo[1]['avatar_url'])."');");
}
if($NewContactInfo[0]['user_id'] == $user_id)
{
$NewContactInfo= $NewContactInfo[0];
}
else
{
$NewContactInfo= $NewContactInfo[1];
}
}
else
{
$row = mysqli_fetch_assoc($result);
$relation_type = $row['type'];
}
$userAgent = "";
if(isset($_SERVER['HTTP_USER_AGENT']))
{
$userAgent = mysqli_real_escape_string(StarCometChat::conf()->getDB(), $_SERVER['HTTP_USER_AGENT']);
}
// Запись в бд
mysqli_query(StarCometChat::conf()->getDB(), "INSERT INTO `messages` (`id`, `from_user_id`, `to_user_id`, `time`, `read_time`, `message`, `userAgent`)"
. " VALUES (NULL, '".$user_id."', '".$to_user_id."', '".date("U")."', '0', '".mysqli_real_escape_string(StarCometChat::conf()->getDB(), $message)."', '".$userAgent."')");
$msg_id = mysqli_insert_id(StarCometChat::conf()->getDB());
$msg = array("id" => $msg_id, "message" => base64_encode($message), "from_user_id" => $user_id, "relation_type"=>$relation_type, "new_contact" => $NewContactInfo);
echo json_encode(array("msg_id" => $msg_id, "message_text" => $message));
$result = mysqli_query(StarCometChat::conf()->getDB(),"SELECT id, login, avatar_url FROM `users` where id in(".$to_user_id.",".$user_id.")");
$row = mysqli_fetch_assoc($result);
if($row['id'] == $user_id)
{
$msg["loginFrom"] = $row['login'];
$msg["avatarFrom"] = $row['avatar_url'];
}
else
{
$msg["loginTo"] = $row['login'];
$msg["avatarTo"] = $row['avatar_url'];
}
$row = mysqli_fetch_assoc($result);
if($row['id'] == $user_id)
{
$msg["loginFrom"] = $row['login'];
$msg["avatarFrom"] = $row['avatar_url'];
}
else
{
$msg["loginTo"] = $row['login'];
$msg["avatarTo"] = $row['avatar_url'];
}
$msg['user_id'] = $user_id;
// Отправка пользователю
$q = mysqli_real_escape_string(StarCometChat::conf()->getComet(), json_encode($msg));
mysqli_query(StarCometChat::conf()->getComet(), "INSERT INTO users_messages (id, event, message)VALUES (".$to_user_id.", 'newMessage', '".$q."')");
// Отправка админам
sendMsgToAdmin("newMessageForUser", $msg);