Giter Club home page Giter Club logo

Comments (4)

rdegges avatar rdegges commented on July 24, 2024

Am working on plans for this =) We'll get something in place soon. I've been trying to figure out a good way to handle this stuff.

from express-stormpath.

richfoxton avatar richfoxton commented on July 24, 2024

I'm a complete novice so this is probably way off base...

Could you just return an error rather than rendering a view at this level and then intercept this elsewhere and return the error in the right format for the client. A bit like the example [here]...(http://runnable.com/UTlPPV-f2W1TAAEf/custom-error-pages-in-express-for-node-js) but in this case obviously for errors other than the 404?

Would save repeating if (req.accepts(['html', 'json']) === 'html') etc... for all calls.

from express-stormpath.

rdegges avatar rdegges commented on July 24, 2024

Oh right -- I think the main issue is this though: coming up with a way to list all possible errors / exceptions, and let a user define values for them to override the defaults.

Right now the errors are (for the most part) returned properly based on the type of middleware (eg: stormpath.groupsRequired is meant for web users, not API stuff, which is why it's returning HTML). HOWEVER, I'd love to find a clean and sane way to let users overwrite the content of every single message in a single location.

I've been thinking about this for a while, and I have a few ideas:

  1. Provide a huge JSON object that holds every possible error, something like:
{
  "loginAttemptBadPasswordProvided": {
    "html": "Invalid username or password.",
    "json": {
      "code": 400,
      "message": "Invalid username or password."
    }
  }
}
  1. Force users to listen for errors and handle them on their own, eg:
app.get('stormpathApplication.').on('loginAttemptBadPasswordProvided', function(req, res) {
  res.json({ code: 400, message: 'Invalid username or password." });
});

Something like those is the best I've come up with so far :(

from express-stormpath.

richfoxton avatar richfoxton commented on July 24, 2024

Not easy I know, much prefer the first solution personally.

In the meantime an API equivalent of stormpath.groupsRequired similar to the authenticationRequired middleware that was added would be nice. I’d have thought this was pretty important functionality for a lot of use cases.

Cheers

from express-stormpath.

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.