-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathmsg.php
executable file
·223 lines (167 loc) · 8.93 KB
/
msg.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
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
<?php # POL.VirtualPol.com — Copyright (c) 2008 Javier González González <[email protected]> — MIT License
if (($pol['user_ID']) AND ($pol['pais'] == PAIS)) {
if ($_GET[1] == 'mensajes-enviados') {
$txt_title = _('Tus mensajes enviados');
$txt_nav = array('/msg'=>_('Mensajes Privados'), _('Enviados'));
$txt_tab = array('/msg'=>_('Recibidos'), '/msg/mensajes-enviados'=>_('Enviados'));
echo '<p>'.boton(_('Enviar mensaje'), '/msg/enviar').' <span class="gris">'._('Mensajes enviados por tí').'.</span></p>';
echo '<table border="0" cellspacing="0" cellpadding="0" width="100%" id="msg_table">
<tr>
<th></th>
<th>'._('Receptor').'</th>
<th width="100%">'._('Tu mensaje').'</th>
<th></th>
</tr>';
$result = mysql_query_old("SELECT
ID, envia_ID, recibe_ID, time, text,
(SELECT nick FROM users WHERE users.ID = recibe_ID LIMIT 1) AS nick_envia,
(SELECT nombre FROM cargos WHERE cargos.cargo_ID = cargo LIMIT 1) AS cargo
FROM mensajes
WHERE envia_ID = '" . $pol['user_ID'] . "'
ORDER BY time DESC
LIMIT 50", $link);
while($r = mysqli_fetch_array($result)){
echo '<tr><td valign="top"></td><td valign="top" align="right"><b>'.crear_link($r['nick_envia']).'</b><br /><b>'.str_replace(' ', ' ', $r['cargo']).'</b><acronym title="'.$r['time'].'" style="font-size:12px;"><span class="timer" value="'.strtotime($r['time']).'"></span></acronym></td><td valign="top" class="rich">'.$r['text'].'</td><td valign="top">'.boton(_('Responder'), '/msg/'.$r['nick_envia']).'</td><td valign="top"></td></tr>'."\n";
}
echo '</table><p><b>(*)</b> <em>Esta página está en versión ALPHA, el motivo es que cabe la "extraña" posibilidad de que falten algunos mensajes. Esto sucederá cuando el RECEPTOR elimine tu mensaje enviado (ya que el mensaje se borra de la base de datos). Puede resultar incoherente la ausencia de algun mensaje enviado.</em></p>';
} else {
$txt_title = $pol['msg'].' '._('mensajes recibidos');
$txt_nav = array('/msg'=>_('Mensajes Privados'), _('Recibidos'));
$txt_tab = array('/msg'=>_('Recibidos'), '/msg/mensajes-enviados'=>_('Enviados'));
echo '
<br />
<div><button onclick="$(\'#box_msg\').toggle(\'slow\');">'._('Escribir mensaje').'</button> <span class="gris">'._('Tienes').' <b>'.$pol['msg'].'</b> '._('mensajes sin leer').'</span> '.boton(_('Marcar todo como leído'), '/accion/mensaje-leido?ID=all', false, 'small pill').'</div>';
// load config
$result = mysql_query_old("SELECT valor, dato FROM config WHERE pais = '".PAIS."' AND autoload = 'no'", $link);
while ($r = mysqli_fetch_array($result)) { $pol['config'][$r['dato']] = $r['valor']; }
if ($_GET[1] == 'cargos') {
$pre_cargo = $_GET[2];
} else if ($_GET[1] != 'enviar') {
$pre_nick = $_GET[1];
if ($pre_nick=='') {
$ocultar_formulario = 'style="display:none;"';
}
}
if (isset($_POST['ciudadanos'])) { $pre_nick = $_POST['ciudadanos']; }
$result = mysql_query_old("SELECT cargo_ID, nombre,
(SELECT COUNT(*) FROM cargos_users WHERE pais = '".PAIS."' AND cargo = 'true' AND cargo_ID = cargos.cargo_ID LIMIT 1) AS cargos_num
FROM cargos
WHERE pais = '".PAIS."' ORDER BY nivel DESC", $link);
while($r = mysqli_fetch_array($result)){
if ($r['cargos_num'] > 0) {
$select_todoscargos .= '<option value="' . $r['cargo_ID'] . '"'.($pre_cargo==$r['cargo_ID']?' selected="selected"':'').'>'.$r['nombre'].' ('.$r['cargos_num'].')</option>';
}
}
$select_todoscargos .= '<option value="SC"'.($pre_cargo=='SC'?' selected="selected"':'').'> '._('Supervisores del Censo').'</option>';
//tus cargos
$result = mysql_query_old("SELECT cargo_ID,
(SELECT nombre FROM cargos WHERE cargos.ID = cargo_ID LIMIT 1) AS nombre
FROM cargos_users
WHERE cargo = 'true'
AND user_ID = '" . $pol['user_ID'] . "'
ORDER BY nombre ASC", $link);
while($r = mysqli_fetch_array($result)){
$select_cargos .= '<option value="' . $r['cargo_ID'] . '">' . $r['nombre'] . '</option>';
}
$result = mysql_query_old("SELECT * FROM grupos WHERE pais = '".PAIS."' ORDER BY num DESC", $link);
while($r = mysqli_fetch_array($result)){
if (in_array($r['grupo_ID'], explode(' ', $pol['grupos']))) {
$select_grupos .= '<option value="'.$r['grupo_ID'].'">'.$r['nombre'].' ('.$r['num'].')</option>';
}
}
$txt_header .= '
<script type="text/javascript">
window.onload = function(){
$("'.($_GET[1] != 'enviar'?'#text':'#ciudadano').'").focus();
}
function click_form(tipo) {
$("#radio_ciudadano").removeAttr("checked");
$("#radio_cargos").removeAttr("checked");
$("#radio_todos").removeAttr("checked");
$("#urgente").removeAttr("disabled","disabled").removeAttr("checked");
$("#radio_" + tipo).attr("checked","checked");
switch (tipo) {
case "todos":
case "cargos":
case "grupos":
$("#urgente").attr("disabled","disabled");
break;
}
}
</script>';
$disabled_todos = '';
if ($pol['config']['pols_mensajetodos'] > $pol['pols']) { $disabled_todos = ' disabled="disabled"'; }
echo '
<div id="box_msg"'.$ocultar_formulario.'>
<form action="/accion/enviar-mensaje" method="post">
<p><b>'._('Destino').':</b><table border="0" style="margin-top:-15px;">
<tr onclick="click_form(\'ciudadano\');">
<td nowrap="nowrap"><input id="radio_ciudadano" type="radio" name="para" value="ciudadano"'.(!$pre_cargo?' checked="checked"':'').' />'._('Ciudadano').':</td>
<td nowrap="nowrap"><input id="ciudadano" tabindex="1" type="text" name="nick" value="'.str_replace('-', ' ', $pre_nick).'" style="font-size:17px;width:300px;" /> '.(nucleo_acceso($vp['acceso']['control_gobierno'])?'':'('._('Hasta').' '.MP_MAX.', '._('nicks separados por espacios').')').'</td>
</tr>
<tr onclick="click_form(\'cargos\');">
<td nowrap="nowrap"><input id="radio_cargos" type="radio" name="para" value="cargo"'.($pre_cargo?' checked="checked"':'').' />'._('Cargos').':</td>
<td nowrap="nowrap"><select name="cargo_ID" style="font-weight:bold;font-size:16px;"><option name="" value=""></option>'.$select_todoscargos.'</select> ('._('envío múltiple').')</td>
</tr>
'.(isset($select_grupos)?'
<tr onclick="click_form(\'grupos\');">
<td><input id="radio_grupos" type="radio" name="para" value="grupos"'.($pre_grupos?' checked="checked"':'').' />'._('Grupos').':</td>
<td><select name="grupo_ID" style="font-weight:bold;font-size:16px;">
<option name="" value=""></option>
'.$select_grupos.'
</select> ('._('envío múltiple').')</td>
</tr>
':'').'
<tr>
'.(ECONOMIA?'<td colspan="2" nowrap="nowrap"><input id="radio_todos" type="radio" name="para" value="todos"' . $disabled_todos . ' onclick="click_form(\'todos\');" />'._('Mensaje global').' (' . $pol['config']['info_censo'] . '). ' . pols($pol['config']['pols_mensajetodos']) . ' '.MONEDA.'.</td>':'').'
</tr>
</table>
</p>
<p><b>'._('Mensaje').':</b><br />
<textarea tabindex="2" name="text" style="width:550px;height:200px;" required></textarea></p>
<input type="hidden" name="calidad" value="0" />
<p>'.boton(_('Enviar'), 'submit', false, 'large blue').' <input type="checkbox" name="urgente" value="1" id="urgente" /> '._('Envío urgente').'. ('._('el receptor recibirá un email').')'.(ECONOMIA?' '.pols($pol['config']['pols_mensajeurgente']) . ' '.MONEDA:'').'</form></p>
<hr />
<br /><br />
</div>
<table border="0" cellspacing="0" cellpadding="4">
<tr>
<th colspan="2"><span style="float:right;">'._('Emisor').' </span>
</th>
<th>'._('Mensaje').'</th>
<th></th>
</tr>';
$result = mysql_query_old("SELECT
ID, envia_ID, recibe_ID, time, text, leido, cargo, recibe_masivo,
(SELECT nick FROM users WHERE users.ID = envia_ID LIMIT 1) AS nick_envia,
(SELECT nombre FROM cargos WHERE cargos.cargo_ID = cargo LIMIT 1) AS cargo_nom
FROM mensajes
WHERE recibe_ID = '" . $pol['user_ID'] . "'
ORDER BY leido ASC, time DESC
LIMIT 100", $link);
while($r = mysqli_fetch_array($result)){
if ($r['leido'] == 0) {
$boton = '<input type="checkbox" name="option2" onClick="window.location.href=\'/accion/mensaje-leido?ID=' . $r['ID'] . '\';" checked />';
$fondo = ' style="background:#FFFFCC;"';
} else {
$boton = '<input type="checkbox" name="option2" />';
$fondo = '';
}
if ($r['cargo'] != '0') { $cargo = ' <img src="'.IMG.'cargos/'.$r['cargo'].'.gif" title="'.$r['cargo_nom'].'" />'; } else { $cargo = ''; }
echo '<tr'.$fondo.'>
<td valign="top">'.$boton.'</td>
<td valign="top" align="right" nowrap="nowrap"><b>'.crear_link($r['nick_envia']).'</b>'.$cargo.'<br /><acronym title="'.$r['time'].'" style="font-size:12px;"><span class="timer" value="'.strtotime($r['time']).'"></span></acronym></td>
<td valign="top" class="rich">'.$r['text'].'</td>
<td valign="top"><button onclick="$(\'#ciudadano\').val(\''.$r['nick_envia'].'\');$(\'#box_msg\').toggle(\'slow\');">'._('Responder').'</button></td>
<td valign="top">'.boton('X', '/accion/borrar-mensaje?ID='.$r['ID'], false, 'small red').'</td>
</tr>'."\n";
}
if (!$boton) { echo '<tr><td colspan="5"><b>'._('No tienes ningún mensaje').'.</b></td></tr>'; }
echo '</table>';
}
} else if ($pol['user_ID']) {
redirect('http://'.strtolower($pol['pais']).'.'.DOMAIN.'/msg/'.($_GET[1]?$_GET[1]:''));
}
//THEME
$txt_menu = 'comu';
?>