[keycloak-dev] Add custom REST paths? New SPI?

Stian Thorgersen sthorger at redhat.com
Tue Dec 8 04:32:02 EST 2015


-1 To adding rest endpoints to the root level. I'd like to get rid of
'realms' part as some point and have all rest endpoints sit underneath a
realm. This makes sure the KeycloakSession always knows what realm is being
handled, so we don't need to pass the realm around as it can be retrived
from the KeycloakContext. It also means that the url can be shortened as we
can drop the 'realms' part.

On 8 December 2015 at 10:22, Greg Jones <gregj at thesoftwarecottage.com.au>
wrote:

> +1 for these changes. We have been looking at a way to add custom REST
> endpoints and would be happy to use this approach.
>
> Regards
> Greg Jones
>
>
> > On 8 Dec 2015, at 8:17 PM, Erik Mulder <erik.mulder at docdatapayments.com>
> wrote:
> >
> > Pedro's change (see below) is kindof what I was looking for, but for my
> case and for general flexibility I think it's good to also have a more
> basic point to hook into the REST API's.
> > I implemented and tested my own suggestion of having an SPI to be able
> to add a REST resource at the root level. Combined with the (coming)
> ability to freely extend the JPA entities and DB schema, I think this
> creates a really powerful extensibility to Keycloak. When we finish these
> changes, I can write a blog post about what we did, why and how as a
> showcase for custom extensions to Keycloak.
> >
> > So are the Keycloak dev's open to a PR with a new SPI that enables you
> to add custom REST paths?
> > For example, you could create something like:
> > http://localhost:8080/auth/myPath/myResource
> >
> >
> > -----Oorspronkelijk bericht-----
> > Van: Pedro Igor Silva [mailto:psilva at redhat.com]
> > Verzonden: maandag 7 december 2015 22:18
> > Aan: Erik Mulder <erik.mulder at docdatapayments.com>
> > Onderwerp: Re: [keycloak-dev] Add custom REST paths? New SPI?
> >
> > It is part of a working in progress around fine-grained authorization
> [1].
> >
> > The new SPI changes [2] specific to Keycloak are located in a specific
> branch [3] in my Keycloak fork.
> >
> > I need to discuss these changes with Bill and see what he thinks about
> it. Depending on his feedback, I can prepare a PR and send these changes to
> upstream.
> >
> > [1] https://github.com/pedroigor/keycloak-authz
> > [2]
> https://github.com/pedroigor/keycloak/commit/5e99614aacb70f7840a5ae25cfeaf3fc9d74ac54
> > [3] https://github.com/pedroigor/keycloak/tree/keycloak-authz-modified
> >
> > Regards.
> >
> > ----- Original Message -----
> > From: "Erik Mulder" <erik.mulder at docdatapayments.com>
> > To: "Pedro Igor Silva" <psilva at redhat.com>
> > Sent: Monday, December 7, 2015 5:51:26 PM
> > Subject: RE: [keycloak-dev] Add custom REST paths? New SPI?
> >
> > Great, that's probably all we need!
> > I'd like to try it out, but I cannot find any reference to what you
> mention on Github. Is it (going to be) a pull request? Is it going to be
> part of a future release?
> > Can you point me to / provide me with these changes so I can give it a
> spin? Thanks!
> >
> > ________________________________________
> > Van: Pedro Igor Silva [psilva at redhat.com]
> > Verzonden: maandag 7 december 2015 16:03
> > Aan: Erik Mulder
> > CC: keycloak-dev at lists.jboss.org
> > Onderwerp: Re: [keycloak-dev] Add custom REST paths? New SPI?
> >
> > I've done something at this regard, where you can use a SPI in order to
> plug additional APIs for:
> >
> >    * Realm Admin RESTFul API (eg.: used by admin console)
> >    * Realm RESFTFul API (eg.: to plug additional endpoints for realms)
> >
> > The two Provider interfaces are very simple and just provide a single
> method:
> >
> >    Object getResource(String pathName);
> >
> > Where pathName is the path that must be resolved to your custom JAX-RS
> resource.
> >
> > The factories are also very simple and allows you to build those
> resources for the current Realm and KeycloakSession. Eg.:
> >
> > RealmResourceProvider create(RealmModel realm, KeycloakSession
> keycloakSession);
> >
> > Do you need something other than that ?
> >
> > Regards.
> > Pedro Igor
> >
> > ----- Original Message -----
> > From: "Erik Mulder" <erik.mulder at docdatapayments.com>
> > To: keycloak-dev at lists.jboss.org
> > Sent: Monday, December 7, 2015 12:46:39 PM
> > Subject: [keycloak-dev] Add custom REST paths? New SPI?
> >
> > As some of you might know, our team is busy adding data to the keycloak
> system to incorporate some custom authorization information in the access
> token.
> > So far we've successfully extended the JPA entities, Liquibase table
> definitions and added a custom mapper to put that data in the access token.
> All of this without custom modifications to the original keycloak sources.
> This is working great, thanks for the support so far!
> > I know I've promised some PR's for this and they will come, but first
> we'd like to get everything fully working, so we know it's a well
> functioning whole.
> >
> > The last piece of the puzzle is extending the REST services to include
> CRUD actions for our custom resources. I've been looking into the way
> RESTEasy/JAX-RS works and it seems to me that in the current implementation
> there is no way to add extra paths. As I see it now, the
> KeycloakApplication class will register some singletons in it's constructor
> and that's that. No way to extend or to 'interfere' there.
> >
> > So my question is: is there any 'official' way to add extra REST paths
> to Keycloak?
> >
> > If not, is it an idea to add this as a new SPI? The current code for
> adding root paths in the KeycloakApplication constructor lists:
> >
> >        singletons.add(new ServerVersionResource());
> >        singletons.add(new RealmsResource());
> >        singletons.add(new AdminRoot());
> >
> > So just plain contructor calls. That seems like an easy target for
> 'SPI-ing' :-).
> > Or just leave the current ones 'hardcoded' and add an SPI for custom
> extensions.
> > Your thoughts on this please.
> >
> > As before, I'm happy to implement this myself, but I'd like to discuss
> it first, so a future PR will be honored.
> >
> >
> > _______________________________________________
> > keycloak-dev mailing list
> > keycloak-dev at lists.jboss.org
> > https://lists.jboss.org/mailman/listinfo/keycloak-dev
> >
> > _______________________________________________
> > keycloak-dev mailing list
> > keycloak-dev at lists.jboss.org
> > https://lists.jboss.org/mailman/listinfo/keycloak-dev
>
>
> _______________________________________________
> keycloak-dev mailing list
> keycloak-dev at lists.jboss.org
> https://lists.jboss.org/mailman/listinfo/keycloak-dev
>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://lists.jboss.org/pipermail/keycloak-dev/attachments/20151208/ce7aac0f/attachment-0001.html 


More information about the keycloak-dev mailing list