• Home
  • Categories
  • Recent
  • Popular
  • Top
  • Tags
  • Users
  • Groups
  • Documentation
    • Home
    • Read API
    • Write API
    • Plugin Development
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
v3.5.2 Latest
Buy Hosting

plugin chat

Scheduled Pinned Locked Moved NodeBB Plugins
9 Posts 4 Posters 870 Views
    • Oldest to Newest
    • Newest to Oldest
    • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • slipknotS Offline
    slipknotS Offline
    slipknot GNU/Linux
    wrote on last edited by
    #1

    existe algun plugin que me permita a los administradores controlar las conversaciones por el chat del forum ?

    1 Reply Last reply
    0
  • jtsimoesJ Offline
    jtsimoesJ Offline
    jtsimoes GNU/Linux
    wrote on last edited by jtsimoes
    #2

    @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

    slipknotS 1 Reply Last reply
    1
  • slipknotS Offline
    slipknotS Offline
    slipknot GNU/Linux
    replied to jtsimoes on last edited by slipknot
    #3

    @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?

    1 Reply Last reply
    0
  • jtsimoesJ Offline
    jtsimoesJ Offline
    jtsimoes GNU/Linux
    wrote on last edited by
    #4

    No lo sé. Tal vez algún miembro del staff te pueda explicar cómo hacerlo:

    @baris @julian How can administrators access chat messages through the database? Are they encrypted?

    slipknotS 1 Reply Last reply
    0
  • slipknotS Offline
    slipknotS Offline
    slipknot GNU/Linux
    replied to jtsimoes on last edited by slipknot
    #5

    @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 ..

    1 Reply Last reply
    0
  • slipknotS Offline
    slipknotS Offline
    slipknot GNU/Linux
    wrote on last edited by
    #6

    help my please

    1 Reply Last reply
    0
  • F Offline
    F Offline
    fgallese
    wrote on last edited by
    #7

    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.

    slipknotS 1 Reply Last reply
    0
  • slipknotS Offline
    slipknotS Offline
    slipknot GNU/Linux
    replied to fgallese on last edited by
    #8

    @fgallese gracias voy ya probar

    1 Reply Last reply
    0
  • C Offline
    C Offline
    chez
    wrote on last edited by
    #9

    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.

    1 Reply Last reply
    1

Copyright © 2023 NodeBB | Contributors
  • Login

  • Don't have an account? Register

  • Login or register to search.
Powered by NodeBB Contributors
  • First post
    Last post
0
  • Home
  • Categories
  • Recent
  • Popular
  • Top
  • Tags
  • Users
  • Groups
  • Documentation
    • Home
    • Read API
    • Write API
    • Plugin Development