Thursday, 20 February 2020

Multiple Download in SharePoint Classical libraries

Downloading Files

SharePoint Classical Library

I might be a bit late posting this but I found some users still use the classical style of SharePoint over the modern style. For them, one of the drawbacks of classical style is that only one file can be downloaded at a time. The bellow solution provides a way to download multiple selected documents in a SharePoint library through the user custom action.

There are many paid apps on the web for this and that is the reason why we do not get the solution for such a simple requirement.

The solution requires a custom action on the library where this is to be implemented, this can be added through SharePoint Designer using simple steps:
Open the Site in SharePoint Designer > from the Left Nav open the List and Libraries section > on the page select the Library where this solution needs to be implemented > under the List Custom Action need to add a new Custom action > to do this select the Custom Action button and from the dropdown select View Ribbon > in the Popup window add the Action Name as "Multiple Download" > in the Ribbon Location change the value from "Ribbon.Documents.Manage.Controls._children" to "Ribbon.Documents.Copies.Controls._children" > You could add the image link if you need to further decorate your Custom Action.


This is a simple Custom Action and nothing much happens when you click it, in order to customize the Custom Action you would need to further update the custom action's CommandUIExtension in order to do this you could go through any approach, but I'm showing you to update it through a simple c# console app.
create a C# console app in Visual Studio (2019 or any that you use) > Add SharePoint reference through NuGet Package Manager "Microsoft.SharePointOnline.CSOM" or simply add reference through Local SharePoint DLL files > Create ClientContext for the Site > add Credentials for the ClientContext > get the desired List/Library > Load the List's UserCustomActions > check for custom action with Name matching "Multiple Download" as mentioned earlier while creating the custom action through SharePoint designer > on the console write the current value of custom action's CommandUIExtension > store this value and modify the value's "CommandAction" and "EnabledScript" with respective values "javascript: bulkDownload();" and "javascript: enable();" these are actually the functions that would be called for this custom action, but these functions do not exist on any javascript file so you need to add a javascript link to the master page with the following javascript commands.

C# Code to edit the custom action:

`
Console.WriteLine("Started Main");
ClientContext ctx = new ClientContext();
SecureString password = new SecureString(); foreach (char c in ) { password.AppendChar(c); }
ctx.Credentials = new SharePointOnlineCredentials(password);
var web = ctx.Web;
ctx.Load(web);
ctx.ExecuteQuery();
Console.WriteLine();
Console.WriteLine(web.Title);
Console.WriteLine();
var list = web.Lists.GetByTitle();
ctx.Load(list);
ctx.ExecuteQuery();
Console.WriteLine();
Console.WriteLine(list.Title);

Console.WriteLine();
var customAntions = list.UserCustomActions;
clientContext.Load(customAntions);
clientContext.ExecuteQuery();
if (customAntions.Count > 0)
{
foreach (var customAction in customAntions)
{
if (customAction.Name != "Multiple Download")
{
#region FirstExecution
// // First execute below lise to get the current value.
Console.WriteLine(customAction.CommandUIExtension);
#endregion FirstExecution
#region SecondExecution
// // During next execution uncoment bellow two lines and execute
// customAction.CommandUIExtension = "<CommandUIExtension><CommandUIDefinitions><CommandUIDefinition Location=\"Ribbon.Documents.Copies.Controls._children\"><Button Id=\"{Same Value as Fetched}\" Command=\"{Same Value as Fetched}\" Image32by32=\"Image Url or blank\" Image16by16=\"Image Url or blank\" Sequence=\"0\" LabelText=\"Multi Download\" Description=\"\" TemplateAlias=\"o1\" /></CommandUIDefinition></CommandUIDefinitions><CommandUIHandlers><CommandUIHandler Command=\"{Same Value as Fetched}\" CommandAction=\"javascript:bulkDownload();\" EnabledScript=\"javascript:enable();\" /></CommandUIHandlers></CommandUIExtension>"; // Line one end
//customAction.Update(); 
#endregion SecondExecution
}
}
}
list.Update();
web.Update();
clientContext.Load(list.UserCustomActions);
clientContext.ExecuteQuery();
Console.WriteLine();
`

The Javascript file contents would be as follows:

`
function enable() {
    var items = SP.ListOperation.Selection.getSelectedItems();
    var itemCount = items.length;
    return (itemCount > 1);
}
function bulkDownload() {
    var items = SP.ListOperation.Selection.getSelectedItems();
    var itemCount = items.length;
    if (itemCount == 0) return;
    var context = SP.ClientContext.get_current();
    var site = context.get_site();
    var web = context.get_web();
    var list = context.get_web().get_lists().getById(SP.ListOperation.Selection.getSelectedList());
    context.load(site);
    context.load(web);
    context.load(list);
    context.executeQueryAsync(
        Function.createDelegate(this, function () {
            var query = new SP.CamlQuery();
            var view = "";
            for (var i = 0; i < itemCount; i++) {
                view += `${items[i].id}`;
            }
            view += '
';            query.set_viewXml(view);
            var url = window.location.href;
            if (url.indexOf('?') > -1) {
                var urlQ = url.split("?")[1];
                var urlQQ = urlQ && urlQ.split("&");
                var folderUrl = '';
                for (var i = 0; i < urlQQ.length; i++) {
                    var a = urlQQ[i];
                    if (a && a.length && a.indexOf("RootFolder") > -1) {
                        folderUrl = a.split("=")[1];
                    }
                }
                if (folderUrl && folderUrl.length) {
                    query.set_folderServerRelativeUrl(decodeURIComponent(folderUrl));
                }
            }
            var itemsQuery = list.getItems(query);
            context.load(itemsQuery, 'Include(FileRef)');
            context.executeQueryAsync(
                Function.createDelegate(this, function () {
                    var itemsEnu = itemsQuery.getEnumerator();
                    while (itemsEnu.moveNext()) {
                        var currentItem = itemsEnu.get_current();
                        var downloadApi = web.get_url() + '/_layouts/15/download.aspx?SourceUrl=';
                        window.open(downloadApi + encodeURIComponent(currentItem.get_item('FileRef')), "_blank");
                    }
                }),
                Function.createDelegate(this, function (sender, args) {
                    console.log("Error retriving Items");
                })
            )
        }),
        Function.createDelegate(this, function (sender, args) {
            console.log("Error loading list");
        })
    );
}
`






















Thursday, 23 November 2017

SharePoint Enterprise Search Center: Modified By Refiner

The modified by refiner is a very crucial refiner in almost every organization. It enables the administrators know who has modified the file and also it helps to ease the search.

The requirement for adding modified by refiner in the search center are as follows:
  • A Enterprise Search Center which can crawl the contents from all sites on the tenant.
  • The user must be the administrator of this Enterprise Search Center's Site collection.
To create the refiner:
  • Go to site Settings.
  • Click on Search Schema under the  Site Collection Administration section
  • In the Managed Properties section search for RefinableString
  • Select any Property which has no Mapped Crawled Properties (Say RefinableString55)
  • Edit the Managed Property
  • On the Edit Page scroll down to the Mappings to crawled properties section
  • Click the Add a Mapping.
  • Search for editor you would find "ows_q_USER _Editor" select it and it to the Mappings to crawled properties, and save the Managed Property.
To create a custom refiner filter (through Sharepoint Designer)
  • Go to the filters folder through All Files > _catalogs > masterpage > Display Templates > Filter.
  • Find the file Filter_Default and create a copy the file in the same location.
  • Edit the copied file, give a distinct name in the title tag say "Refinement Item Display Name".
  • Scroll to line number 264. where a function outputFilter is declared as "function outputFilter(refinementName, refinementCount, refiners, method, aClass, showCounts) {".
  • on the next line insert the following code:
if(refinementName.indexOf("|") !== -1){
refinementName = refinementName.split('|')[1];
                refinementName = refinementName.trim();
}
  • Save the page, now a new refiner filter is created.

To add the refiner:
  • Edit the Search Result Page were refiner is required.
  • Edit the Refinement Web-Part
  • In the properties for Search Refinement, click the Choose Refiners button
  • Select the RefinableString55 from the Available refiners and click add
  • Set the Display Name as "Modified By"
  • Select the Custom Refinement Item from the Display Template
  • Modify the rest three fields (viz Sort By, Sort Direction, Maximum refiner values) as per requirement.
  • Save the refiners by clicking on OK
  • Save the Edit refiner properties section on the left by clicking OK
  • Save the Page changes, check in the page and finally publish the page.
If you need snippets to understand better than plz reply, Thanks for reading. 

Sunday, 18 December 2016

SharePoint list creation using REST api

This is a code blog to create a SharePoint List using REST API calls and jQuery scripting currently the only input is the list name and rest options are hard coded but can be easily be modified to fit your need
function ListCreation() {
var _listName = listName();
var listUrl = listNameShrink(_listName);
$.ajax({
url: _spPageContextInfo.siteAbsoluteUrl + "/_api/web/lists",
type: "POST",
data: JSON.stringify({
'__metadata': { 'type': 'SP.List' },
'AllowContentTypes': true,
'BaseTemplate': 100,
'ContentTypesEnabled': true,
'Description': 'List created Through REST',
'Title': listUrl,
'OnQuickLaunch': true
}),
headers: {
"accept": "application/json;odata=verbose",
"content-type": "application/json;odata=verbose",
"X-RequestDigest": $("#__REQUESTDIGEST").val()
},
success: function (data) {
if (listUrl != _listName)
$.ajax({
url: data.d.__metadata.uri,
type: 'POST',
headers: {
"accept": "application/json;odata=verbose",
"content-type": "application/json;odata=verbose",
"X-RequestDigest": $("#__REQUESTDIGEST").val(),
"X-HTTP-Method": "MERGE",
"If-Match": data.d.__metadata.etag
},
data: JSON.stringify({
'__metadata': { 'type': data.d.__metadata.type },
'Title': _listName
}),
success: function (dataP) {
$("#result1").removeClass("hidden").stop().show(0).text(_listName + " List is being Created with url as " + listUrl).hide(30000).mouseenter(function () { $(this).stop().show(0); }).mouseleave(function () { $(this).hide(30000) });
},
error: function (error) {
alert("error updating List name " + error);
}
});
else
$("#result1").removeClass("hidden").stop().show(0).text(_listName + " List is being Created " + listUrl).hide(30000).mouseenter(function () { $(this).stop().show(0); }).mouseleave(function () { $(this).hide(30000) });
},
error: function (error) {
alert("error creating List " + error);
}
});
}

The supporting functions for the above code are
function listName() {
var _listName = $("#ListName0").val();
return _listName;
}
function listNameShrink(_listName) {
var listNameWords = _listName.split(" ");
var listUri = "";
for (i = 0; i < listNameWords.length; i++) {
listUri += listNameWords[i].charAt(0).toUpperCase() + listNameWords[i].slice(1);
}
return listUri;
}

The second supportive function helps in removing spaces in the list name and capitalization of each words first letter(alphabet)
Please, do comment on any query related to the topic

Wednesday, 12 October 2016

SharePoint 2013 (CSOM): Star Ratings Programmatically Adding Star-Rating or Re-Rating a List Item.

This Blog is about SharePoint's Star Rating Feature and how to change/read the Field Values Programmatically using CSOM. That is basically Rating or Re-rating the item.

What can be done by the following code is :
  • Select a list (should have ratings enabled).
  • Select the Item form the list.
  • Select a Site user whom you need to rate.
  • Finally the main code
    • To change the user's rating.
              OR
    • To rate the item.
  • To view the field values.

Most of the aspects of Star Rating are being covered but how Un-rate is intentionally not being covered as the user cant un-rate the item in SharePoint out of the box. If you want a code to un-rate the item please comment about it, I would Post it later.  
Note: Please use it for Ethically.
Code:
1. Console apps main Program code.
                 
class RatingsMain
{
static void Main(string[] args)
{
ClientContext clientContext = new ClientContext("http://Your Site url ");
SecureString password = new SecureString();
foreach (char c in "Your Password ".ToCharArray())
password.AppendChar(c);
clientContext.Credentials = new NetworkCredential("User Name", password, "Domain Name");
Web web = clientContext.Web;
clientContext.Load(web);
clientContext.ExecuteQuery();
Console.Title = "Ratings";
FetchList getList = new FetchList();
List list = getList.ByName(clientContext, web);
Console.Title = "Ratings:" + list.Title;
FetchItem getItem = new FetchItem();
ListItem item = getItem.ByName(clientContext, list);
Console.Title = "Ratings:" + list.Title + ">" + item.DisplayName;
SetUser getUser = new SetUser();
User user = getUser.ByName(clientContext, list, item);
Console.Title = "Ratings:" + list.Title + ">" + item.DisplayName + " (" + user.Title + ")";
ChangeRating reCalculate = new ChangeRating();
reCalculate.NewRatings(clientContext, list, item, user);
list.Update();
clientContext.ExecuteQuery();
Console.ReadLine();
clientContext.Dispose();
}
}
view raw RatingsMain.cs hosted with ❤ by GitHub
2. Code of the FetchList Class.
                
class FetchList
{
public List ByName(ClientContext clientContext, Web web)
{
clientContext.Load(web.Lists, l => l.IncludeWithDefaultProperties(i => i.Title));
clientContext.ExecuteQuery();
List list = web.Lists[0];
int numberOfTries = 5;
bool isListPresent = false;
string listName;
Console.WriteLine("Site: " + web.Title);
Console.WriteLine();
Console.WriteLine("Enter the List Name To Select");
string skipReadingListName = Console.ReadLine();
do
{
numberOfTries--;
if (skipReadingListName == "" || numberOfTries == 0)
return DefaultList(clientContext);
listName = skipReadingListName;
//a function to ensure the list is present in current web.
CustomListCheck(clientContext, listName, out list, out isListPresent);
if (!isListPresent)
{
Console.Clear();
Console.WriteLine("Site: " + web.Title);
Console.WriteLine();
Console.WriteLine("The List name is miss-spelled!\nOr\nList with name '" + listName + "' is not Present!.\nPlease re-enter the List Name/Title\nOr\nPress EnterKey to skip and use DefaultList");
skipReadingListName = Console.ReadLine();
}
} while (!isListPresent);
clientContext.Load(list);
clientContext.ExecuteQuery();
return list;
}
//function to select a default list.
private List DefaultList(ClientContext clientContext)
{
//alert user that default list is being selected.
Console.WriteLine("List name skipped hence default list 'TestingList' is being selected\n Do you wish to continue Y/N");
string reselect = Console.ReadLine();
if (reselect != "Y" && reselect != "y" && reselect != "")
ByName(clientContext, clientContext.Web);
List defaultList = clientContext.Web.Lists.GetByTitle("TestingList");
clientContext.Load(defaultList);
clientContext.ExecuteQuery();
return defaultList;
}
//function to check whether list with listName specified is present or not and return with the list.
private void CustomListCheck(ClientContext clientContext, string listName, out List customList, out bool isPresent)
{
isPresent = false;
clientContext.Load(clientContext.Web.Lists);
clientContext.ExecuteQuery();
ListCollection lists = clientContext.Web.Lists;
clientContext.Load(lists);
clientContext.Load(lists, t => t.IncludeWithDefaultProperties(l => l.Title));
clientContext.ExecuteQuery();
customList = lists[0];
foreach (List list in lists)
if (list.Title == listName)
{
customList = clientContext.Web.Lists.GetByTitle(listName);
isPresent = true;
break;
}
}
}
view raw FetchList.cs hosted with ❤ by GitHub
3. Code of FetchItem class.
                
class FetchItem
{
string itemName;
int numberOfTries = 5;
public ListItem ByName(ClientContext clientContext, List list)
{
Console.Clear();
Console.WriteLine("Site: " + clientContext.Web.Title);
Console.WriteLine("List: " + list.Title);
Console.WriteLine();
Console.WriteLine("Enter The Name of Item which you need to Rate");
string skipReadingItemName = Console.ReadLine();
ListItem item = list.GetItemById(1);
bool isItemPresent = false;
CamlQuery query = CamlQuery.CreateAllItemsQuery();
ListItemCollection items = list.GetItems(query);
clientContext.Load(items, i => i.IncludeWithDefaultProperties(t => t.DisplayName));
clientContext.ExecuteQuery();
do
{
numberOfTries--;
if (skipReadingItemName == "" || numberOfTries == 0)
return DefaultItem(clientContext, list);
itemName = skipReadingItemName;
foreach (ListItem itemCheck in items)
if (itemCheck.DisplayName == itemName)
{
item = itemCheck;
isItemPresent = true;
break;
}
if (!isItemPresent)
{
Console.Clear();
Console.WriteLine("Site: " + clientContext.Web.Title);
Console.WriteLine("List: " + list.Title);
Console.WriteLine();
Console.WriteLine("The Item name Provided is either miss-spelled or does not exists\nPlease re-enter the Item Name/DisplayName");
skipReadingItemName = Console.ReadLine();
}
} while (!isItemPresent);
clientContext.Load(item);
clientContext.ExecuteQuery();
return item;
}
//function to get default item.
private ListItem DefaultItem(ClientContext clientContext, List list)
{
ListItemCollection items = list.GetItems(CamlQuery.CreateAllItemsQuery());
clientContext.Load(items, i => i.IncludeWithDefaultProperties(t => t.DisplayName));
clientContext.ExecuteQuery();
ListItem defaultItem = items[0];
clientContext.Load(defaultItem);
clientContext.ExecuteQuery();
//alert the default item is being selected.
Console.WriteLine("Item name skipped hence Default item i.e. first item in list\n'" + defaultItem.DisplayName + "' is being selected\n Do you wish to continue Y/N");
string reselect = Console.ReadLine();
if (reselect != "y" && reselect != "Y" && reselect != "")
ByName(clientContext, list);
return defaultItem;
}
}
view raw FetchItem.cs hosted with ❤ by GitHub
4. Code of SetUser class.
               
class SetUser
{
public User ByName(ClientContext clientContext, List list, ListItem item)
{
clientContext.Load(clientContext.Web.SiteUsers, i => i.IncludeWithDefaultProperties(u => u.Title, u => u.Id));
clientContext.ExecuteQuery();
User user = clientContext.Web.SiteUsers.GetById(1);
bool isUserPresent = false;
int numberOfTries = 5;
string userName;
Console.Clear();
Console.WriteLine("Site: " + clientContext.Web.Title);
Console.WriteLine("List: " + list.Title);
Console.WriteLine("Item: " + item.DisplayName);
Console.WriteLine();
Console.WriteLine("Enter the User name");
string skipReadingUserName = Console.ReadLine();
do
{
if (skipReadingUserName == "" || numberOfTries == 0)
return DefaultUser(clientContext, list, item);
userName = skipReadingUserName;
numberOfTries--;
foreach (User userSearch in clientContext.Web.SiteUsers)
if (userSearch.Title == userName)
{ //if site-user with exact name is present.
user = userSearch;
isUserPresent = true;
break;
}
else if (userSearch.Title.Split(' ')[0] == userName)
{ //if site-user with FirstName is equal to the specified name is present.
user = userSearch;
isUserPresent = true;
}
if (!isUserPresent)
{
Console.Clear();
Console.WriteLine("Site: " + clientContext.Web.Title);
Console.WriteLine("List: " + list.Title);
Console.WriteLine("Item: " + item.DisplayName);
Console.WriteLine();
Console.WriteLine("The User name is miss-spelled \nOr\n User does not exists.\nPlease re-enter the User Name/Title");
string skipReadingItemName = Console.ReadLine();
}
} while (!isUserPresent);
clientContext.Load(user);
clientContext.ExecuteQuery();
return user;
}
//function to get default user.
private User DefaultUser(ClientContext clientContext, List list, ListItem item)
{
Console.WriteLine("User selection skipped hence default user user1 is being selected\n Do you wish to continue Y/N");
string reselect = Console.ReadLine();
if (reselect != "Y" && reselect != "y" && reselect != "")
return ByName(clientContext, list, item);
else
{
string loginName = "i:0#.w|sharepoint\\user1";
User defaultUser = clientContext.Web.EnsureUser(loginName);
clientContext.Load(defaultUser);
clientContext.ExecuteQuery();
return defaultUser;
}
}
}
view raw SetUser.cs hosted with ❤ by GitHub
5.  Code to change the ratings packed in ChangeRating class.
                
class ChangeRating
{
bool hasUserRated = false;
Random random = new Random();
int sumOfRatings = 0;
int userRatingIndex = 0;
int numberOfTries = 5;
float newAverageRating = 0;
int numberOfRatings = 0;
string newRatingsFromUser = string.Empty;
string newRatings = string.Empty;
List<FieldUserValue> newUsersRated = new List<FieldUserValue>();
public void NewRatings(ClientContext clientContext, List list, ListItem item, User user)
{
Console.Clear();
Console.WriteLine("Site: " + clientContext.Web.Title);
Console.WriteLine("List: " + list.Title);
Console.WriteLine("Item: " + item.DisplayName);
Console.WriteLine("User: " + user.Title);
Console.WriteLine();
FieldUserValue[] ratedUsers = item["RatedBy"] as FieldUserValue[];
if (ratedUsers != null)
for (int i = 0; i < ratedUsers.Length; i++)
if (ratedUsers[i].LookupValue == user.Title)
{
userRatingIndex = i;
hasUserRated = true;
break;
}
if (hasUserRated)
Rerate(item, user);
else
Rate(item, user, ratedUsers);
Console.WriteLine("Users Rating " + newRatingsFromUser + ",\n Ratings= " + newRatings + "\n Ratings Count= " + numberOfRatings + ",\n Average Ratings= " + newAverageRating);
item.Update();
}
//function to re-rate or skip rating the item
private void Rerate(ListItem item, User user)
{
int randomStarRating = random.Next(1, 5);
string[] ratings = item["Ratings"].ToString().Split(',');
numberOfRatings = int.Parse(item["RatingCount"].ToString());
string ratedValue = ratings[userRatingIndex];
Console.WriteLine("The User " + user.Title + " has already Rated the item with " + ratedValue + " star Rating\n Do you want to enter new Rating Y/N");
string reRate = Console.ReadLine();
if (reRate == "y" || reRate == "Y" || reRate == "yes" || reRate == "Yes")
{
for (int i = 0; i < numberOfRatings; i++)
if (i == userRatingIndex)
{
Console.WriteLine("Enter the new Star Rating or skip(EnterKey) to generate Random Star Rating");
string skipReadingRatings = Console.ReadLine();
do
{
if (skipReadingRatings == "" || numberOfTries == 1)
{
newRatingsFromUser = randomStarRating.ToString();
newRatings += newRatingsFromUser + ",";
sumOfRatings += randomStarRating;
}
else
{
newRatingsFromUser = skipReadingRatings;
if (newRatingsFromUser == "1" || newRatingsFromUser == "2" || newRatingsFromUser == "3" || newRatingsFromUser == "4" || newRatingsFromUser == "5")
{
newRatings += newRatingsFromUser + ",";
sumOfRatings += int.Parse(newRatingsFromUser);
}
else
{
Console.WriteLine("The ratings entered is incorrect please enter numbers from 1 to 5 only\nOr\n skip(EnterKey) to generate Random Star Rating");
skipReadingRatings = Console.ReadLine();
}
}
numberOfTries--;
} while (newRatingsFromUser != "1" && newRatingsFromUser != "2" && newRatingsFromUser != "3" && newRatingsFromUser != "4" && newRatingsFromUser != "5" && skipReadingRatings != "" && numberOfTries != 0);
}
else
{
newRatings += ratings[i] + ",";
sumOfRatings += int.Parse(ratings[i].ToString());
}
item["Ratings"] = newRatings;
item["AverageRating"] = (float)(sumOfRatings / numberOfRatings);
}
else
{
newRatingsFromUser = ratedValue;
newRatings = item["Ratings"].ToString();
newAverageRating = float.Parse(item["AverageRating"].ToString());
}
}
//Function To rate the item
private void Rate(ListItem item, User user, FieldUserValue[] ratedUsers)
{
int randomStarRating = random.Next(1, 5);
string[] ratings = item["Ratings"] != null ? item["Ratings"].ToString().Split(',') : null;
newRatings = item["Ratings"] != null ? item["Ratings"].ToString() : string.Empty;
newAverageRating = item["AverageRating"] == null ? 0 : float.Parse(item["AverageRating"].ToString());
numberOfRatings = item["RatingCount"] == null ? 0 : int.Parse(item["RatingCount"].ToString());
Console.WriteLine("The User " + user.Title + " has not Rated the item.\n Enter the new Star Rating or skip(EnterKey) to generate Random Star Rating");
string skip = Console.ReadLine();
do
{
if (skip == "" || numberOfTries == 1)
{
newRatingsFromUser = randomStarRating.ToString();
newRatings += newRatingsFromUser + ",";
newAverageRating = ((newAverageRating * numberOfRatings) + randomStarRating) / (numberOfRatings + 1);
//or
//newAverageRating = newAverageRating + ((randomStarRating - newAverageRating) / (numberOfRatings + 1));
}
else
{
newRatingsFromUser = skip;
if (newRatingsFromUser == "1" || newRatingsFromUser == "2" || newRatingsFromUser == "3" || newRatingsFromUser == "4" || newRatingsFromUser == "5")
{
newRatings += newRatingsFromUser + ",";
sumOfRatings += int.Parse(newRatingsFromUser);
newAverageRating = ((newAverageRating * numberOfRatings) + int.Parse(newRatingsFromUser)) / (numberOfRatings + 1);
}
else
{
Console.WriteLine("The ratings entered is incorrect please enter numbers from 1 to 5 only or skip(EnterKey) to generate Random Star Rating");
skip = Console.ReadLine();
}
}
numberOfTries--;
} while (newRatingsFromUser != "1" && newRatingsFromUser != "2" && newRatingsFromUser != "3" && newRatingsFromUser != "4" && newRatingsFromUser != "5" && skip != ""&& numberOfTries != 0);
numberOfRatings += 1;
item["RatingCount"] = numberOfRatings.ToString();
item["Ratings"] = newRatings;
item["AverageRating"] = newAverageRating.ToString();
if (ratedUsers != null)
foreach (FieldUserValue ratedUser in ratedUsers)
newUsersRated.Add(ratedUser);
newUsersRated.Add(FieldUserValue.FromUser(user.LoginName));
item["RatedBy"] = newUsersRated;
}
}
view raw ChangeRating.cs hosted with ❤ by GitHub
Please feel free to comment on any related issues.