Powershell script to work on matching item names from external source

Many times there are scenarios when we are given with a excel file or csv from external source which has item names but not the item’s Sitecore IDs. Like we are given a excel with product names and other features which came from SAP resource.

Here the main challenge is to find the Sitecore item under a bucket folder which contains almost 8k items and then apply the logic(update or deletion) using a Powershell script. Getting the item based on item name will be slow and costly operation and the script will be too slow in making the updates. As the data is provided by external source so we don’t have the Item Ids which is the fastest way to find a item in Sitecore.

There are two ways to address this issue.

First way is manual way which requires some excel expertise of Vlookup.

First output a csv with item names and its id by using Powershell as below.

$allItems = Get-ChildItem “master:/sitecore/content/Products” -recurse | where-object {$_.TemplateID -eq “{B0707AC2-64D8-4CA1-AED4-3A1250208295}”}

foreach($itm in $allItems){write-host $itm.Name “;” $itm.ID}

Do a vlookup with the same column values. Here Item name and Product SKU (from SAP) has same column values and we can associate the Item IDs by vlookup from two excels files (one created from Sitecore and other one from external source).

VLOOKUP to populate associate Sitecore Item IDs

Once you have Ids you can quickly get the item in Powershell and do any kind of update operation on it.

Second way is fully automated way which I recently used to handle this scenario.

First create a hashtable of item names and its Ids and while reading the csv perform the key lookup which is the Product name(Item name in Sitecore) and get the ID. Again once you got the IDs you are free to do any manipulation at item level. It was quite fast and no manual intervention required. No excel expertise required.

foreach($itm in $allItems)
{
try{$hash.Add($itm.Name.ToLower(), $itm.ID) } catch { #Write-Host $itm.Name “;” $_.Exception.Message -BackgroundColor DarkRed }

}

foreach($row in $csv){

$key=$row.”ProducNameColumn”.Trim()

$ids = $hash[$key]

$sitecoreitm= Get-Item “master:” -ID $ids -ErrorAction SilentlyContinue

$sitecoreitm.Editing.BeginEdit()
$sitecoreitm.Fields[“Value”].Value = “some value”;
$sitecoreitm.Editing.EndEdit()

}

                          

Adding a Custom Tab to the Content Item in Sitecore Client.

We can create tabs in our Sitecore content items as shown above. A tab can be created for different reasons. One of the simple reasons is to direct business users how to use that content item like adding Datasources from a specific location in content tree or using specific template, applying rules on a field and so on. Lets see how we can create it.

First open Sitecore Core Database and create and item under path “/sitecore/content/Applications/Content Editor/Editors/Items“. The Item should be based on the “/sitecore/templates/Sitecore Client/Content editor/Editor” template. Here our created item name is “About Home”. The most important field is URL field in the created item which is “TabsController\Index”  and in controller code(TabsController) we have to apply attribute routing as shown below. Here Index.cshtml is view file associated with the action method.

[System.Web.Mvc.Route("sitecore/shell/Applications/TabsController/Index")]
public ActionResult Index()
        {
            return PartialView("~/Views/Tabs/Index.cshtml");
        }

To call this route from the Sitecore content Item we need to patch our Sitecore pipeline with below class.

public class CustomMVCRoutes
    {
        public void Process(PipelineArgs args)
        {
            RouteTable.Routes.MapMvcAttributeRoutes();
            Log.Info("Sitecore is starting........test", this);
        }
}

We need to add the patch file in our Include folder to invoke CustomMVCRoutes at particular execution step.

<configuration xmlns:patch="http://www.sitecore.net/xmlconfig/">
  <sitecore>
    <pipelines>
      <initialize>
        <processor type="MyCMSSoln.CustomMVCRoutes,MyCMSSoln" patch:before="processor[@type='Sitecore.Mvc.Pipelines.Loader.InitializeControllerFactory, Sitecore.Mvc']" />
      </initialize>
    </pipelines>
  </sitecore>
</configuration>

At last go the item in master Database where you want to apply the tab and go in Appearance section Editors field and apply the newly created tab that is About Home(created in core database).

Once you compile and deploy the code and dll and view is updated, newly created About Home Tab will be shown in the content tree.

Calling Sitecore Controller rendering dynamically on the view(cshtml) file and passing rendering parameters

We can call the Controller renderings already created on a view file. In some scenarios we can not assign the rendering on the item (for ex wildcard scenarios where we need this rendering on specific item not all the items)

@Html.Sitecore().Rendering(itemid, new { DataSource = itmds.ID})

wher Datasource is

Item itmds = Sitecore.Context.Database.GetItem(“Path or Id or some Datasource field”);

    

Passing Rendering Parameters dynamically

Lets assume we are passing orientation and Background color with the Datasource where Orientation is passed as string.

Item itorient = Sitecore.Context.Database.GetItem( “Path or Id or some Datasource field” );
Item itbccolor = Sitecore.Context.Database.GetItem(” Path or Id or some Datasource field );

string Orient = string.Format(“Orientation={0}&Background Color={1}”, itorient.Name, itbccolor.ID);