Try our conversational search powered by Generative AI!

Virtual Role and Dynamic properties causes StackOverflow

Vote:
 

How much logic can/should be put in an Virtual Role? We have need of using quite complex Virtual Role that depends on a dynamic property.

The sceneario is this:

We have made an custom membership provider to be able to authenticate users against our own database containing several thousands of user wich we do not want to integrate in EPiServer.

To be able to set access rights on those we created a virtual role wich checks that the login name follows a certain regular expression. So far everything works fine and the users can log in and is part of the Virtual role.

We then needed to extend the virtual role to check a dynamic property on pages and by adding the following code the virtual role causes a stackoverflow:

int pageId = int.Parse(HttpContext.Current.Request.QueryString["id"]);
PageData page = EPiServer.DataFactory.Instance.GetPage(new PageReference(pageId));
int projectId = int.Parse(page["ProjectId"].ToString());

There are even more logic that needs to be added to the Virtual role but since it throws exception even at this point we hadn't went any further. The Virtual role has to check our databse if the user is authorized to see the pages with a certain project id.

Is this to much logic or is something wrong with the code or is there a much more effecitve way to do this?

#26565
Dec 11, 2008 14:23
Vote:
 
After viewing whats happens in debug mode the code stops att the PageData object creation line and start the IsInVirtualRole method all over again. This means that there is an infinite loop but why does it stops there. I think it might have something to do with access level but I can't really figure ot how to be able to get around this, since I need to use a page not accessible to everyone but before I have granted the current user the Virtual role.
#26568
Edited, Dec 11, 2008 15:38
Vote:
 
After viewing whats happens in debug mode the code stops att the PageData object creation line and start the IsInVirtualRole method all over again. This means that there is an infinite loop but why does it stops there. I think it might have something to do with access level but I can't really figure ot how to be able to get around this, since I need to use a page not accessible to everyone but before I have granted the current user the Virtual role.
#26605
Dec 12, 2008 12:47
Vote:
 

If you are not using R2, try with this line.

...
PageData page = EPiServer.DataFactory.Instance.GetPage(new PageReference(pageId), EPiServer.Security.AccessLevel.NoAccess);
...

Then it hopefully will ignore the VirtualRole-check when you need to get the dynamic-property.

#26610
Dec 12, 2008 13:52
Vote:
 

worked like a charm. I tried some of theese but not the noaccess one, typical.

Seems weird that the was no errormessage when trying to access the page. The procedure just restarted over and over again.

How will this change in R2?

#26644
Edited, Dec 15, 2008 13:02
Vote:
 

In R2 the security check when using GetPage is removed, and you have to do it by your self.

Nice in some cases (like this maybe?), and in some other cases it's a real pain.

#26645
Dec 15, 2008 13:14
* You are NOT allowed to include any hyperlinks in the post because your account hasn't associated to your company. User profile should be updated.