Uploaded image for project: 'AeroGear'
  1. AeroGear
  2. AEROGEAR-1115

Security scaffolding

    XMLWordPrintable

Details

    • Feature Request
    • Resolution: Won't Do
    • Major
    • 1.future
    • 1.future
    • forge, security
    • None

    Description

      see details here :
      I've been thinking about Security Scaffolding. It's a different beast than a simple CRUD scaffolding. It'sa bit more difficult to make assumption when you want to generate security flows : which http method to protect ? using only authentification or also authorization ? etc ...

      Therefore, I've been thinking of some kind of configuration that the user could provide before the scaffolding process. Keeping it really simple and "human readable" and that could really speed up setting up the security layer :

      {
      "security":
      "createUsers" :["sebi","abtractj"], //1
      "createRole" :["simple","admin"], //2
      "roleMap": ["simple":["abstractj","sebi"],"admin":["sebi"]], //3
      "generateLoginForm" : true, //4
      "generateOTPPage" : true, //5
      "entities" : { //6
      "org.sebi.Task" : {
      "GET":

      { "authentification" : false }

      ,
      "POST":

      { "authentification" : true, "authorization" : "simple" }

      ,
      "PUT":

      { "authentification" : true, "authorization" : "admin" }

      ,
      "DELETE":

      { "authentification" : true, "authorization" : "admin" }

      }
      }
      }

      Let me detail each of these points to make the discussion easier :

      • 4. generateLoginForm : if true, the UI scaffolding will also generate a login form (location and layout depending on the scaffolding provider (AngularJS+Bootstrap, AngularJS+JQM) or by providing a custom template fragment.
      • 5. generateOTPPage : if true, the UI scaffolding will also generate a OTP page (location and layout depending on the scaffolding provider (AngularJS+Bootstrap, AngularJS+JQM) or by providing a custom template fragment.
      • 6. Entities : Here we configure the security flow for each entity per HTTP methods. Concretely, this will mean :
      • On the backend, generate the right route, i.e :

      route().from("/task").roles("admin").on(RequestMethod.DELETE).to(Task.class).delete();

      • On the frontend, setting the flag or not on a pipe to enable auth. Other option are possible, liking hiding links, disabling button depending on the authorization/authnetification. We should discuss these options.

      I think it could be a nice addition, and from the feedback I've heard, this kind of feature really misses today in the current scaffolding tools regarding security. This could be really a killing feature and not hard to implement.

      Please comment, ask questions to polish the feature !

      Seb

      Attachments

        Issue Links

          Activity

            People

              sebastienblanc Sebastien Blanc (Inactive)
              sebastienblanc Sebastien Blanc (Inactive)
              Votes:
              0 Vote for this issue
              Watchers:
              2 Start watching this issue

              Dates

                Created:
                Updated:
                Resolved: