@sharonyue
Can you publish the user's URL?
Very happy and looking forward to open source.
wish nodebb better and better.
plugin chat
-
existe algun plugin que me permita a los administradores controlar las conversaciones por el chat del forum ?
-
@slipknot Hace un tiempo se implementó la capacidad de los administradores para ver los chats de otras personas, pero fue luego removido, ya que es invasión de privacidad.
Ellos dijeron que iban a poner esta funcionalidad en un plugin aparte por separado, pero hasta hoy todavía no hay nada.Fuente:
https://community.nodebb.org/topic/9642/new-in-1-2-0/14 -
@jtsimoes Well I am the admin and I have axeso ala base data, how could I get them out that way?
I am admin of the forum and I have access to the database, how could I do it in this way?
-
-
@jtsimoes ok thanks is that I have some bad head users, who give it to hacker and communicate in this way, I would like to know what they do ..
-
help my please
-
Si bien no conozco ningún plugin que te permita controlar eso, es bien fácil de consultar directamente en la base de datos, los mensajes no estan encriptados ni nada parecido.
Por ejemplo:
(código de python porque es lo que manejo yo)
from pymongo import MongoClient
client = MongoClient('elSocket', username='elUsuario', password='elPassword', authSource='laDbDeAuth')
mycol = client["laDb"]["objects"]
data = mycol.find_one({'_key': 'message:61512'})
print(data)Eso te va a devolver algo como esto:
{ "_id" : ObjectId("5c8f515fa48e2379dd6372bc"), "_key" : "message:61512", "content" : "elTextoDelMensaje", "deleted" : 0, "fromuid" : 1, "ip" : "unaIP", "roomId" : "9", "timestamp" : 1552896351333 }
Es solo un ejemplo de cómo obtener un mensaje de chat, pero bueno, te haces una idea de cómo podrías implementar un script que te devuelva los mensajes de un chat.
-
@fgallese gracias voy ya probar
-
I had a plugin that adds an option for the administrator to see users' chat.
Now I can not find it
I would love if someone would bring me a suitable link for it.