Git Product home page Git Product logo

Comments (4)

prabirshrestha avatar prabirshrestha commented on May 11, 2024 2

it works. Not sure why the first time I tried it showed error.

Probably having cookies() as a function will help. But for now I'm good.

from socketioxide.

Totodore avatar Totodore commented on May 11, 2024

You can access any header made for your request by using req_parts() on your SocketRef. Because I didn't exported the Socket struct. The doc of Socket is missing on doc.rs :/

E.g. :

io.ns("/", |s: SocketRef, Data::<Value>(data)| {
    let cookies = socket.req_parts().headers.get(http::headers::COOKIE); // Comma separated list of cookies
    info!("Received: {:?}", data);
    s.emit("welcome", data).ok();
});

from socketioxide.

prabirshrestha avatar prabirshrestha commented on May 11, 2024

I was able to access via let cookie= &socket.req_parts().headers.get("cookie");. Probably worth having .cookies so we don't need to parse it manually?

How do I write async code to validate the user token given I cannot pass async functions.

async fn on_connect(socket: SocketRef, Data(data): Data<Value>) {
  let cookie= &socket.req_parts().headers.get("cookie").unwrap_or_default();
  if validate_user(cookie).await? {
  }
}

from socketioxide.

Totodore avatar Totodore commented on May 11, 2024

You should be able to put async function as handler like this :

async fn test(s: SocketRef) {
}
io.ns("/", test);
socket.on(
    "message",
    |socket: SocketRef, Data::<Value>(data), Bin(bin)| async move {
        info!("Received event: {:?} {:?}", data, bin);
        socket.bin(bin).emit("message-back", data).ok();
    },
);

For the .cookie part, it would only be an alias of that socket.req_parts().headers.get("cookie") because it would be useless to parse cookies for the case where they are not used. But that might be a good idea to add this alias

from socketioxide.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.