this post was submitted on 22 Feb 2025
12 points (92.9% liked)

Selfhosted

42990 readers
314 users here now

A place to share alternatives to popular online services that can be self-hosted without giving up privacy or locking you into a service you don't control.

Rules:

  1. Be civil: we're here to support and learn from one another. Insults won't be tolerated. Flame wars are frowned upon.

  2. No spam posting.

  3. Posts have to be centered around self-hosting. There are other communities for discussing hardware or home computing. If it's not obvious why your post topic revolves around selfhosting, please include details to make it clear.

  4. Don't duplicate the full text of your blog or github here. Just post the link for folks to click.

  5. Submission headline should match the article title (don’t cherry-pick information from the title to fit your agenda).

  6. No trolling.

Resources:

Any issues on the community? Report it using the report flag.

Questions? DM the mods!

founded 2 years ago
MODERATORS
 

I'm trying to setup owncloud with single sign on using Authentik. I have it working for normal users. There is a feature that allows automatic role assignment to users so that admin users from authentik become admin users for owncloud.

This is described here: https://doc.owncloud.com/ocis/next/deployment/services/s-list/proxy.html#automatic-role-assignments.

In this document, they describe having attributes like

- role_name: admin
  claim_value: ocisAdmin

The problem I have is I don't know how to input this information into an Authentik user. As a result, owncloud is giving me this error:

ERR Error mapping role names to role ids error="no roles in user claims" line=github.com/owncloud/ocis/v2/services/proxy/pkg/userroles/oidcroles.go:84 request-id=5a6d0e69-ad1b-4479-b2d9-30d4b4afb8f2 service=proxy userid=05b283cd-606c-424f-ae67-5d0016f2152c

Any authentik experts out there?

I tried putting this under the attributes section of the user profile in authentik:

role_name: admin
claim_value: ocisAdmin

It doesn't work and it won't let me format YAML like the documentation where the claim_value is a child of the role_name.

you are viewing a single comment's thread
view the rest of the comments
[–] MessyAdvent@lemmy.dbzer0.com 1 points 13 hours ago

I had the exact same issue.
Basically, what I wanted to do, was to have my Authentik user created as an admin, and the others to be created as users (as anyway, I would be able to change the roles of the other users from my user).

Here's how I fixed it :
1 - In left navigation menu, went to "Directory/Groups", then created a new "group" called "ocisAdmin".
2 - In left navigation menu, went to "Directory/Users", then assigned my user to this new group.
3 - In left navigation menu, went to "Customization/Property Mappings", then, created a new "Scope Mapping" (penultimate option on my UI). Gave it a name that speaks to me ("oCIS email scope extended", if you want to know), "email" as "Scope Name", and this expression:

return {
  "roles": "ocisAdmin" if ak_is_group_member(request.user, group_uuid="55bb2a58-2973-4753-a16a-6ebc80bec705") else "ocisUser"
} # Replace the UUID with your group's one, I found it in the URL when modifying the group in Authentik

4 - In left navigation menu, went to "Applications/Providers", opened each oCIS provider, clicked "Edit", opened the sub-menu "Advanced protocol settings", selected my custom "Property mapping" in the left "Scopes" menu, and clicked on the right pointing arrow to have it selected for those providers.

Also, make SURE that you have this property set:

PROXY_ROLE_ASSIGNMENT_DRIVER=oidc

Now, my users are properly populated into oCIS.
I still need to figure out how to make the applications work, but I have faith I'll figure it out :)

Hope that helped !