0

同じ Web アプリのサイト コレクション B で作成しているサイトに、サイト コレクション A からアクセス許可をコピーしたいと考えています。これは、ItemAdded のリスト アイテム イベント レシーバーで発生しています。

これが私がこれまでに持っているものです...

                static void SetupNewSubSite(int currentYear, SPItemEventProperties properties, int siteIndexId)
    {
        //set properties to create my new web
        string description = properties.AfterProperties["Project_x0020_Description"].ToString();
        SPListItem CurrentItem = properties.ListItem;
        String subSiteUrl = Convert.ToString(siteIndexId);
        SPSite projectSiteCollection = new SPSite(properties.Web.Site.Url + "/" + currentYear);
        SPWeb sWeb = new SPSite(properties.SiteId).OpenWeb(properties.RelativeWebUrl);

        SPWeb oWeb = projectSiteCollection.RootWeb;
        SPWebCollection cWebs = oWeb.Webs;

        //create the new web
        SPWeb xWeb = cWebs.Add(subSiteUrl, properties.AfterProperties["Title"].ToString(),
        properties.AfterProperties["Project_x0020_Description"].ToString(), 1033, "{B5B6BDD1-485A-44BC-B093-F1048271C49D}", false, false);                        
        UpdateItemProjectUrl(CurrentItem, properties.Web.Site.Url + "/" + currentYear + "/" + subSiteUrl, currentYear);

        //break inheritance and remove permissions from the new site
        xWeb.BreakRoleInheritance(false);
        LogMessage("Role Count: " + xWeb.RoleAssignments.Count.ToString());
        while (xWeb.RoleAssignments.Count > 0)
        {
            xWeb.RoleAssignments.Remove(0);
        }

        //Get the roleassignments from the source site
        SPRoleAssignmentCollection sRoleAssignments = sWeb.RoleAssignments;
        LogMessage("role assignment count from source web: "+ sRoleAssignments.Count.ToString());
        foreach (SPRoleAssignment sRoleAssignment in sRoleAssignments)
        {
            SPPrincipal sPrincipal = sRoleAssignment.Member;
            LogMessage("Principal Name: " + sPrincipal.Name.ToString());
            try
            { 
                //add roleassignment to newly created web                   
                xWeb.RoleAssignments.Add(sPrincipal);
            }

            catch (Exception ex)
            {
                LogMessage(ex.ToString());
            }
        }
        xWeb.Update();
        LogMessage("After Permissions Change");
        xWeb.Dispose();
        projectSiteCollection.Dispose();
        oWeb.Dispose();
        LogMessage("after dispose");


    }

このコードは正常に実行されます。 1. 他のサイト コレクションに新しいサイトを作成します。2. 新しく作成されたサイトで継承を解除します。3. 新しく作成されたサイトから元の権限を削除します。

このコードは成功しません:

  1. グループを他のサイト コレクションから新しいサイトにコピーします。
4

2 に答える 2

0

ワークフローの try-catch 処理を行わずに、拡張メソッドとして機能を作り直しました。

public static void CopyWebRoleAssignmentsFrom(this SPWeb web, SPWeb fromWeb)
{
    web.BreakRoleInheritance(false);
    foreach (SPRoleAssignment sourceRoleAsg in fromWeb.RoleAssignments)
    {
        SPRoleAssignment destinationRoleAsg = null;
        SPPrincipal member = sourceRoleAsg.Member;
        if (member is SPUser)
        {
            SPUser sourceUser = member as SPUser;
            SPUser user = web.SiteUsers[sourceUser.LoginName];
            destinationRoleAsg = new SPRoleAssignment(user);
        }
        else if (member is SPGroup)
        {
            SPGroup sourceGroup = (SPGroup)member;
            SPGroup group = web.SiteGroups[sourceGroup.Name];
            destinationRoleAsg = new SPRoleAssignment(group);
        }

        foreach (SPRoleDefinition sourceRoleDefinition in sourceRoleAsg.RoleDefinitionBindings)
        {
            destinationRoleAsg.RoleDefinitionBindings.Add(web.RoleDefinitions[sourceRoleDefinition.Name]);
        }

        if (destinationRoleAsg.RoleDefinitionBindings.Count > 0)
        {
            web.RoleAssignments.Add(destinationRoleAsg);
        }
    }
    web.Update();
}
于 2013-12-17T12:28:30.453 に答える