How can my server for a Connect add-on determine what permissions a user has? I'm looking for ADMINISTER specifically, but it's unlikely to be right-specific.
I found two options, none of which seems ideal:
Am I missing something? Are these the only options?
I would recommend skipping the REST API completely, and use conditions to determine that:
https://developer.atlassian.com/static/connect/docs/latest/concepts/conditions.html
What you can do is to have 2 different entry points into whatever webItem/webPanel you are providing, and either separate it into different files (if you are referring to html files) or use the same base URL and include different query parameters in each one. One would check whether the user is admin, and the other one would check the same condition, but with invert:true.
So for example, the one with admin permission would point to:
/path-to-my-addon?isAdmin=true&issue=...
and the other inverted condition would point to:
/path-to-my-addon?isAdmin=false&issue=...
and then you can just read it out of the query parameters.
Of course, this only works if you are doing something that interacts with the user in the browser and is going to present the information right away. If it's reacting to a webhook or something like that, then you probably wouldn't be able to use what I mentioned. In that case, a little bit more information about your use case would be required.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thanks, but this is pretty weak security. You can't really trust requests coming from the client, assuming that they have always been sent by your app, properly validated on the client side, etc.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I do see your point. If you are using JWT authentication for the requests, though, then you can validate that the requests haven't been tampered with, I think.
Perhaps there is another way to get this information; I'll take another look.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Join the largest European gathering of the Atlassian Community and reimagine what’s possible when great teams and transformative technology come together. Plus, grab your Super Fan ticket now and save over €1,000 on your pass before prices rise on 3 June.
Register nowOnline forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.