Skip to main content

Dynamically add UserControls/WebPart based on User Role

I am building a "dashboard" and want to dynamically load different catalogs based on user roles. I searched quite lot to figure out how to dynamically / programmatically add a DeclarativeCatalogPart to a CatalogZone. But couldn't find out perfect solution. The issues I faced are listed below.
1. The CatalogZone control can only contain CatalogPart controls, so you can't dynamically load controls into this section.
2. Tried to use WebPartsListUserControlPath property, by loading usercontrols programatically based on user role. Eventhough it doesn't throw any error, controls are not properly rendered in run time.

I tried some other things too (except building a "Custom CatalogPart"), but none worked. So I dropped the idea of avoiding hard-coded catalog and solved the issue in the below manner. In this case authorization is not completely database driven, still...

The below approach allows you to set permissions to Web Parts based on user roles. If a user does not have a matching Role the Web Part will not be Visible in the Declarative Catalog. One added advantage of this approch is, if the user is later removed from the role, the Web Parts will disappear from the page.

1. Add event OnAuthorizeWebPart to the WebPartManager
 <asp:WebPartManager ID="WPM" runat="server" OnAuthorizeWebPart="AuthorizeWebParts" Personalization-Enabled="true">

2. Add an AuthorizationFilter tag containing all of the roles that can access that particular control separated by a semi-colon. 
                <asp:CatalogZone ID="cntrlCatalog" HeaderText="Add Charts" runat="server">
                    <ZoneTemplate>
                        <asp:DeclarativeCatalogPart ID="declCatalogPart"
                            runat="server">
                            <WebPartsTemplate>
                                <asp:Calendar ID="Calendar1" AuthorizationFilter="Administrator; Teacher; Student" title="Calendar" runat="server" />
                                <uc1:intakeNationality runat="server" AuthorizationFilter="Administrator;" Title="Nationality" ID="intakeNationality" />
                                <uc1:searchTest runat="server" AuthorizationFilter="Student;" Title="Search" ID="searchTest" />
                            </WebPartsTemplate>
                        </asp:DeclarativeCatalogPart>
                    </ZoneTemplate>
                </asp:CatalogZone>
3. Add the following AuthorizeWebParts function in the Web Page code file.
    protected void AuthorizeWebParts(object sender, WebPartAuthorizationEventArgs e)
    {
        if (String.IsNullOrEmpty(e.AuthorizationFilter)) return;
        string[] rolesArray = e.AuthorizationFilter.Split(new Char[] { ';' });
        e.IsAuthorized = false;
        foreach (string roleStr in rolesArray)
        {
            roleStr.Trim();
            if (User.Roles.IsInRole(roleStr)) // Check Current User Role
            {
                e.IsAuthorized = true;
                break;
            }
        }
    }
This will work and It is simple. But it will be better if we will be able to set the roles dynamically to each control instead of hard coding it in the page. I will work on it and let you know update sometime later

Also listed below some links about Custom CatalogPart which may be helpful for you to solve this problem in a more efficient manner.
http://www.carlosag.net/articles/webparts/catalog-part-sample
http://blogs.msdn.com/b/rahulso/archive/2006/03/18/dynamically-adding-webparts-to-the-dynamically-added-catalog-zone.aspx
http://geissingert.wordpress.com/2010/10/29/using-a-custom-catalogpart-to-add-webparts-dynamically-at-run-time/

Comments

Popular posts from this blog

ഗുരു ദേവോ ഭവ:

ഇ ന്ന് ദേശീയ അധ്യാപക ദിനം. അധ്യാപകനും രാഷ്ട്രപതിയുമായിരുന്ന ഡോ.എസ് രാധാകൃഷ്ണന്‍റെ പിറന്നാള്‍ ദിനമാണ് അധ്യാപക ദിനമായി നാം ആചരിക്കുന്നത്. ഈ ഒരു സുദിനത്തില്‍ ഈയൊരു അധ്യാപകനെ സ്മരിച്ചില്ലെങ്കില്‍ അതൊരു നന്ദികേടായി പോവും.  ഓര്‍മ്മക്കുറിപ്പിലേക്ക് കടക്കുന്നതിനു മുന്‍പൊരു ഡിസ്ക്ലെയിമര്‍. ബാദ്ധ്യതാ നിരാകരണം ഒടുക്കം മാത്രം നടത്തുന്നതാണ് ആചാരം. എങ്കിലും, അതു താനല്ലയോ ഇതെന്ന് ചുമ്മാ കല്‍പ്പിച്ചു കൂട്ടി എന്തിനുമേതിനും വ്രണപ്പെടുന്നൊരു സമൂഹത്തില്‍, അവകാശപരിത്യാഗം ആദ്യം തന്നെ നടത്തുകയെന്ന ആചാരലംഘനമാവും ഉചിതം. അതെ, ഇനി ഇവിടെ പറയാന്‍ പോവുന്നതൊരു മിത്ത് മാത്രമാണു. എന്ന്? എവിടെ? എത്രത്തോളം? നടന്നുവെന്നതിനൊന്നും ഇവിടെയൊരു പ്രസക്തിയില്ല. പതിറ്റാണ്ടുകളായി കേരളത്തിലെ പലപല കോളേജുകളും ഇതെന്‍റെ ഗര്‍ഭമാണെന്ന അവകാശവാദവുമായി എത്തിയിട്ടുണ്ടു. സത്യം ആര്‍ക്കറിയാം! ഒരു കാര്യം മാത്രം എനിക്കു തറപ്പിച്ചു പറയാം, എന്‍റെ ഗര്‍ഭം ഇങ്ങിനെയല്ല. അതുകൊണ്ടു തന്നെ ഈ കഥയിലെ കഥാപാത്രങ്ങളും കഥാപരിസരവും സാങ്കല്‍പ്പികം മാത്രമാണു, മറിച്ച് തോന്നുന്നെങ്കില്‍ അതു കയ്യിലിരിപ്പിന്‍റെ ഗുണം

Crystal reports load report failed: Could not load file or assembly CrystalDecisions.Web, Version=10.2.3600.0

Recently we upgraded our Web Application Server to Windows Server 2008. After this, crystal reports in the VS2005 applications failed to load. This is because VS 2005 applications were using crystal report version 10.2.3600.0 which we can't install in Windows Server 2008. In the new server we can only install the crystal report version 10.5.3700.0. I had to follow the below steps to resolve this issue. Downloaded and installed new version of crystal report from the page below. http://wiki.sdn.sap.com/wiki/pages/viewpage.action?pageId=56787567 Changed versions(10.2.3600.0 to 10.5.3700.0) in Web.Config and report viewer pages We removed all the crystal report reference from the project and tried to refer the new versions. But new versions were not displayed in the list. So I decided to take a local copy of these dlls and refer them. To do this run the below command( as Admin ) regsvr32 -u C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\shfusion.dll The above command will help you

Timeout expired. The timeout period elapsed prior to completion of the operation or the server is not responding.

I was getting timeout error while executing a stored procedure from the web application. But this stored procedure is executing within a second while running from SQL management studio. This issue can happen when database's statistics and/query plan cache are incorrect. This can be resolved by updating statistics by executing  exec sp_updatestats Error: Timeout expired.  The timeout period elapsed prior to completion of the operation or the server is not responding. Solution:  exec sp_updatestats If issue didn't resolve even after executing above this, you may need to optimize the query.