Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

#1548 - feature: recycle folder #1620

Open
wants to merge 4 commits into
base: dev
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
227 changes: 226 additions & 1 deletion src/sdk/PnP.Core.Test/SharePoint/FoldersTests.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
using Microsoft.VisualStudio.TestTools.UnitTesting;
using Microsoft.VisualStudio.TestTools.UnitTesting;
using PnP.Core.Model;
using PnP.Core.Model.SharePoint;
using PnP.Core.QueryModel;
using PnP.Core.Services;
using PnP.Core.Test.Utilities;
using System;
using System.Collections.Generic;
Expand Down Expand Up @@ -1073,6 +1074,222 @@ public async Task MoveFolderBatchWithOptionsTest()
await CleanupMockFolderFromSharedDocuments(2, folderToFindName);
}

#region Recycle() variants

[TestMethod]
public async Task RecycleFolderAsyncTest()
{
// TestCommon.Instance.Mocking = false;
var mockFolderServerRelativeUrl = await AddMockFolderToSharedDocuments(0, "TO RECYCLE FOLDER");
using (var context = await TestCommon.Instance.GetContextAsync(TestCommon.TestSite, 1))
{
IFolder folderToDelete = await context.Web.GetFolderByServerRelativeUrlAsync(mockFolderServerRelativeUrl);

// Test if the folder is created
Assert.IsNotNull(folderToDelete);

Guid recycleBinId = await folderToDelete.RecycleAsync();

Assert.AreNotEqual(Guid.Empty, recycleBinId);

// Test if the folder is still found
IFolder folderToFind = await context.Web.Lists.GetByTitle("Documents", p => p.RootFolder).RootFolder
.Folders
.FirstOrDefaultAsync(ct => ct.Name == "TO RECYCLE FOLDER");

Assert.IsNull(folderToFind);

await CleanupMockFolderFromRecycleBin(context, recycleBinId);
}
}

[TestMethod]
public async Task RecycleFolderTest()
{
//TestCommon.Instance.Mocking = false;
var mockFolderServerRelativeUrl = await AddMockFolderToSharedDocuments(0, "TO RECYCLE FOLDER");
using (var context = await TestCommon.Instance.GetContextAsync(TestCommon.TestSite, 1))
{
IFolder folderToDelete = await context.Web.GetFolderByServerRelativeUrlAsync(mockFolderServerRelativeUrl);

// Test if the folder is created
Assert.IsNotNull(folderToDelete);

Guid recycleBinId = folderToDelete.Recycle();

Assert.AreNotEqual(Guid.Empty, recycleBinId);

// Test if the folder is still found
IFolder folderToFind = await context.Web.Lists.GetByTitle("Documents", p => p.RootFolder).RootFolder
.Folders
.FirstOrDefaultAsync(ct => ct.Name == "TO RECYCLE FOLDER");

Assert.IsNull(folderToFind);

await CleanupMockFolderFromRecycleBin(context, recycleBinId);
}
}

[TestMethod]
public async Task RecycleFolderCurrentBatchAsyncTest()
{
//TestCommon.Instance.Mocking = false;
var mockFolderServerRelativeUrl = await AddMockFolderToSharedDocuments(0, "TO RECYCLE FOLDER");
using (var context = await TestCommon.Instance.GetContextAsync(TestCommon.TestSite, 1))
{
IFolder folderToDelete = await context.Web.GetFolderByServerRelativeUrlAsync(mockFolderServerRelativeUrl);

// Test if the folder is created
Assert.IsNotNull(folderToDelete);

var batchRecycle = await folderToDelete.RecycleBatchAsync();
Assert.IsFalse(batchRecycle.IsAvailable);
await context.ExecuteAsync();
Assert.IsTrue(batchRecycle.IsAvailable);
Assert.AreNotEqual(Guid.Empty, batchRecycle.Result.Value);

// Test if the folder is still found
IFolder folderToFind = await context.Web.Lists.GetByTitle("Documents", p => p.RootFolder).RootFolder
.Folders
.FirstOrDefaultAsync(ct => ct.Name == "TO RECYCLE FOLDER");

Assert.IsNull(folderToFind);

await CleanupMockFolderFromRecycleBin(context, batchRecycle.Result.Value);
}
}

[TestMethod]
public async Task RecycleFolderCurrentBatchTest()
{
//TestCommon.Instance.Mocking = false;
var mockFolderServerRelativeUrl = await AddMockFolderToSharedDocuments(0, "TO RECYCLE FOLDER");
using (var context = await TestCommon.Instance.GetContextAsync(TestCommon.TestSite, 1))
{
IFolder folderToDelete = await context.Web.GetFolderByServerRelativeUrlAsync(mockFolderServerRelativeUrl);

// Test if the folder is created
Assert.IsNotNull(folderToDelete);

var batchRecycle = folderToDelete.RecycleBatch();

await context.ExecuteAsync();

// Test if the folder is still found
IFolder folderToFind = await context.Web.Lists.GetByTitle("Documents", p => p.RootFolder).RootFolder
.Folders
.FirstOrDefaultAsync(ct => ct.Name == "TO RECYCLE FOLDER");

Assert.IsNull(folderToFind);

await CleanupMockFolderFromRecycleBin(context, batchRecycle.Result.Value);
}
}

[TestMethod]
public async Task RecycleFolderBatchAsyncTest()
{
//TestCommon.Instance.Mocking = false;
var mockFolderServerRelativeUrl = await AddMockFolderToSharedDocuments(0, "TO RECYCLE FOLDER");
using (var context = await TestCommon.Instance.GetContextAsync(TestCommon.TestSite, 1))
{
IFolder folderToDelete = await context.Web.GetFolderByServerRelativeUrlAsync(mockFolderServerRelativeUrl);
// Test if the folder is created
Assert.IsNotNull(folderToDelete);

var batch = context.NewBatch();
var batchRecycle = await folderToDelete.RecycleBatchAsync(batch);
await context.ExecuteAsync(batch);

// Test if the folder is still found
IFolder folderToFind = await context.Web.Lists.GetByTitle("Documents", p => p.RootFolder).RootFolder
.Folders
.FirstOrDefaultAsync(ct => ct.Name == "TO RECYCLE FOLDER");

Assert.IsNull(folderToFind);

await CleanupMockFolderFromRecycleBin(context, batchRecycle.Result.Value);
}
}

[TestMethod]
public async Task RecycleFolderBatchTest()
{
//TestCommon.Instance.Mocking = false;
var mockFolderServerRelativeUrl = await AddMockFolderToSharedDocuments(0, "TO RECYCLE FOLDER");
using (var context = await TestCommon.Instance.GetContextAsync(TestCommon.TestSite, 1))
{
IFolder folderToDelete = await context.Web.GetFolderByServerRelativeUrlAsync(mockFolderServerRelativeUrl);
// Test if the folder is created
Assert.IsNotNull(folderToDelete);

var batch = context.NewBatch();
var batchRecycle = folderToDelete.RecycleBatch(batch);
await context.ExecuteAsync(batch);

// Test if the folder is still found
IFolder folderToFind = await context.Web.Lists.GetByTitle("Documents", p => p.RootFolder).RootFolder
.Folders
.FirstOrDefaultAsync(ct => ct.Name == "TO RECYCLE FOLDER");

Assert.IsNull(folderToFind);

await CleanupMockFolderFromRecycleBin(context, batchRecycle.Result.Value);
}
}


[TestMethod]
public async Task RecycleNestedFolderTest()
{
using (var context = await TestCommon.Instance.GetContextAsync(TestCommon.TestSite))
{
IFolder parentFolder = (await context.Web.Lists.GetByTitleAsync("Site Pages", p => p.RootFolder)).RootFolder;

var addedFolder = await parentFolder.EnsureFolderAsync("sub1/sub2");
Assert.IsNotNull(addedFolder);
Assert.AreEqual("sub2", addedFolder.Name);

IFolder folder1ToDelete = await context.Web.GetFolderByServerRelativeUrlAsync(addedFolder.ServerRelativeUrl);
Guid recycleBin1Id = folder1ToDelete.Recycle();
Assert.AreNotEqual(Guid.Empty, recycleBin1Id);

try
{
await context.Web.GetFolderByServerRelativeUrlAsync(addedFolder.ServerRelativeUrl);
}
catch (SharePointRestServiceException e)
{
var error = e.Error as SharePointRestError;
Assert.AreEqual(404, error.HttpResponseCode);
}

await CleanupMockFolderFromRecycleBin(context, recycleBin1Id);

var folderToDelete = await parentFolder.EnsureFolderAsync("sub1");
Assert.IsNotNull(folderToDelete);
Assert.AreEqual("sub1", folderToDelete.Name);

IFolder folder2ToDelete = await context.Web.GetFolderByServerRelativeUrlAsync(folderToDelete.ServerRelativeUrl);
Guid recycleBin2Id = folder2ToDelete.Recycle();
Assert.AreNotEqual(Guid.Empty, recycleBin2Id);

try
{
await context.Web.GetFolderByServerRelativeUrlAsync(folderToDelete.ServerRelativeUrl);
}
catch (SharePointRestServiceException e)
{
var error = e.Error as SharePointRestError;
Assert.AreEqual(404, error.HttpResponseCode);
}

await CleanupMockFolderFromRecycleBin(context, recycleBin2Id);
}
}

#endregion

[TestMethod]
public async Task GetFolderChangesAsyncTest()
{
Expand Down Expand Up @@ -1182,6 +1399,14 @@ private async Task CleanupMockFolderFromSharedDocuments(int contextId, string fo
await mockFolder.DeleteAsync();
}
}

private async Task CleanupMockFolderFromRecycleBin(PnPContext context, Guid recycleBinId,
[System.Runtime.CompilerServices.CallerMemberName] string testName = null)
{
IRecycleBinItem recycleBinItem = await context.Site.RecycleBin.FirstOrDefaultAsync(item => item.Id == recycleBinId);
await recycleBinItem.DeleteAsync();
}

#endregion
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6df285a1-e0ba-b000-d246-ba411d20215e","SPClientServiceRequestDuration":"11","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC\u002B01:00) Amsterdam, Berlin, Bern, Rome, Stockholm, Vienna\u0022,\u0022Id\u0022:4,\u0022Information\u0022:{\u0022Bias\u0022:-60,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00225c1693ab-3bab-4780-812e-23bf82ba06cc\u0022,\u0022Url\u0022:\u0022https://loitzl2.sharepoint.com/sites/pnpcoresdktestgroup\u0022}"}
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6df285a1-e0c0-b000-d246-babe24ebec89","SPClientServiceRequestDuration":"13","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022e351a3ff-1595-4979-b588-88038f993cc6\u0022,\u0022Id\u0022:\u002269fad637-9681-4e09-b667-75b94e7898fb\u0022}"}
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6df285a1-f0c3-b000-d246-b8880d8ccd62","SPClientServiceRequestDuration":"22","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RootFolder\u0022:{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:2,\u0022Name\u0022:\u0022Shared Documents\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents\u0022,\u0022TimeCreated\u0022:\u00222021-09-18T23:16:17Z\u0022,\u0022TimeLastModified\u0022:\u00222025-02-28T14:27:06Z\u0022,\u0022UniqueId\u0022:\u0022f3212b1d-18b7-4608-9f3a-b91f9c2fffef\u0022,\u0022WelcomePage\u0022:\u0022\u0022},\u0022Id\u0022:\u0022480fb956-ffb5-41cd-ab3f-7585b461c641\u0022}"}
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6df285a1-30c7-b000-d246-bfb5aa72a3af","SPClientServiceRequestDuration":"99","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TO RECYCLE FOLDER\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents/TO RECYCLE FOLDER\u0022,\u0022TimeCreated\u0022:\u00222025-02-28T14:33:29Z\u0022,\u0022TimeLastModified\u0022:\u00222025-02-28T14:33:29Z\u0022,\u0022UniqueId\u0022:\u00221c38e735-a910-4b01-94aa-f9683e48e987\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"}
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6df285a1-d0cf-b000-d246-bec75d391684","SPClientServiceRequestDuration":"12","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC\u002B01:00) Amsterdam, Berlin, Bern, Rome, Stockholm, Vienna\u0022,\u0022Id\u0022:4,\u0022Information\u0022:{\u0022Bias\u0022:-60,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00225c1693ab-3bab-4780-812e-23bf82ba06cc\u0022,\u0022Url\u0022:\u0022https://loitzl2.sharepoint.com/sites/pnpcoresdktestgroup\u0022}"}
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6df285a1-f0d1-b000-d246-ba7e4764e7f9","SPClientServiceRequestDuration":"14","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022e351a3ff-1595-4979-b588-88038f993cc6\u0022,\u0022Id\u0022:\u002269fad637-9681-4e09-b667-75b94e7898fb\u0022}"}
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6df285a1-50d5-b000-d246-b3dde6a1c631","SPClientServiceRequestDuration":"16","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TO RECYCLE FOLDER\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents/TO RECYCLE FOLDER\u0022,\u0022TimeCreated\u0022:\u00222025-02-28T14:33:29Z\u0022,\u0022TimeLastModified\u0022:\u00222025-02-28T14:33:29Z\u0022,\u0022UniqueId\u0022:\u00221c38e735-a910-4b01-94aa-f9683e48e987\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"}
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6df285a1-a0d7-b000-d246-bc919138190f","SPClientServiceRequestDuration":"84","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022value\u0022:\u0022666e4cb7-6814-4ec5-b541-fe148e964f35\u0022}"}
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6df285a1-20df-b000-d246-b41f0b85877c","SPClientServiceRequestDuration":"21","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RootFolder\u0022:{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:2,\u0022Name\u0022:\u0022Shared Documents\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents\u0022,\u0022TimeCreated\u0022:\u00222021-09-18T23:16:17Z\u0022,\u0022TimeLastModified\u0022:\u00222025-02-28T14:33:29Z\u0022,\u0022UniqueId\u0022:\u0022f3212b1d-18b7-4608-9f3a-b91f9c2fffef\u0022,\u0022WelcomePage\u0022:\u0022\u0022},\u0022Id\u0022:\u0022480fb956-ffb5-41cd-ab3f-7585b461c641\u0022}"}
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6df285a1-20e3-b000-d246-b915c9557a2c","SPClientServiceRequestDuration":"26","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022value\u0022:[]}"}
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6df285a1-70e7-b000-d246-b62d2be38f8b","SPClientServiceRequestDuration":"27","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022value\u0022:[{\u0022AuthorEmail\u0022:\u0022\u0022,\u0022AuthorName\u0022:\u0022SharePoint App\u0022,\u0022DeletedByEmail\u0022:\u0022\u0022,\u0022DeletedByName\u0022:\u0022SharePoint App\u0022,\u0022DeletedDate\u0022:\u00222025-02-28T14:33:29Z\u0022,\u0022DeletedDateLocalFormatted\u0022:\u00222/28/2025 3:33 PM\u0022,\u0022DirName\u0022:\u0022sites/pnpcoresdktestgroup/Shared Documents\u0022,\u0022DirNamePath\u0022:{\u0022DecodedUrl\u0022:\u0022sites/pnpcoresdktestgroup/Shared Documents\u0022},\u0022Id\u0022:\u0022666e4cb7-6814-4ec5-b541-fe148e964f35\u0022,\u0022ItemState\u0022:1,\u0022ItemType\u0022:5,\u0022LeafName\u0022:\u0022TO RECYCLE FOLDER\u0022,\u0022LeafNamePath\u0022:{\u0022DecodedUrl\u0022:\u0022TO RECYCLE FOLDER\u0022},\u0022Size\u0022:\u0022152\u0022,\u0022Title\u0022:\u0022TO RECYCLE FOLDER\u0022}]}"}
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6df285a1-d0ea-b000-d246-b6b4168bc663","SPClientServiceRequestDuration":"56","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":""}
Loading
Loading