webdav portal owa support check added
This commit is contained in:
parent
5795ffb0bc
commit
010c258502
16 changed files with 246 additions and 20 deletions
|
@ -0,0 +1,57 @@
|
|||
using System.Collections;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using WebsitePanel.WebDav.Core.Config.WebConfigSections;
|
||||
|
||||
namespace WebsitePanel.WebDav.Core.Config.Entities
|
||||
{
|
||||
public class OwaSupportedBrowsersCollection : AbstractConfigCollection, IReadOnlyDictionary<string, int>
|
||||
{
|
||||
private readonly IDictionary<string, int> _browsers;
|
||||
|
||||
public OwaSupportedBrowsersCollection()
|
||||
{
|
||||
_browsers = ConfigSection.OwaSupportedBrowsers.Cast<OwaSupportedBrowsersElement>().ToDictionary(x => x.Browser, y => y.Version);
|
||||
}
|
||||
|
||||
public IEnumerator<KeyValuePair<string, int>> GetEnumerator()
|
||||
{
|
||||
return _browsers.GetEnumerator();
|
||||
}
|
||||
|
||||
IEnumerator IEnumerable.GetEnumerator()
|
||||
{
|
||||
return GetEnumerator();
|
||||
}
|
||||
|
||||
public int Count
|
||||
{
|
||||
get { return _browsers.Count; }
|
||||
}
|
||||
|
||||
public bool ContainsKey(string browser)
|
||||
{
|
||||
return _browsers.ContainsKey(browser);
|
||||
}
|
||||
|
||||
public bool TryGetValue(string browser, out int version)
|
||||
{
|
||||
return _browsers.TryGetValue(browser, out version);
|
||||
}
|
||||
|
||||
public int this[string browser]
|
||||
{
|
||||
get { return ContainsKey(browser) ? _browsers[browser] : 0; }
|
||||
}
|
||||
|
||||
public IEnumerable<string> Keys
|
||||
{
|
||||
get { return _browsers.Keys; }
|
||||
}
|
||||
|
||||
public IEnumerable<int> Values
|
||||
{
|
||||
get { return _browsers.Values; }
|
||||
}
|
||||
}
|
||||
}
|
|
@ -12,5 +12,6 @@ namespace WebsitePanel.WebDav.Core.Config
|
|||
FileIconsDictionary FileIcons { get; }
|
||||
HttpErrorsCollection HttpErrors { get; }
|
||||
OfficeOnlineCollection OfficeOnline { get; }
|
||||
OwaSupportedBrowsersCollection OwaSupportedBrowsers { get; }
|
||||
}
|
||||
}
|
|
@ -0,0 +1,24 @@
|
|||
using System.Configuration;
|
||||
|
||||
namespace WebsitePanel.WebDav.Core.Config.WebConfigSections
|
||||
{
|
||||
public class OwaSupportedBrowsersElement : ConfigurationElement
|
||||
{
|
||||
private const string BrowserKey = "browser";
|
||||
private const string VersionKey = "version";
|
||||
|
||||
[ConfigurationProperty(BrowserKey, IsKey = true, IsRequired = true)]
|
||||
public string Browser
|
||||
{
|
||||
get { return (string)this[BrowserKey]; }
|
||||
set { this[BrowserKey] = value; }
|
||||
}
|
||||
|
||||
[ConfigurationProperty(VersionKey, IsKey = true, IsRequired = true)]
|
||||
public int Version
|
||||
{
|
||||
get { return (int)this[VersionKey]; }
|
||||
set { this[VersionKey] = value; }
|
||||
}
|
||||
}
|
||||
}
|
|
@ -0,0 +1,18 @@
|
|||
using System.Configuration;
|
||||
|
||||
namespace WebsitePanel.WebDav.Core.Config.WebConfigSections
|
||||
{
|
||||
[ConfigurationCollection(typeof(OwaSupportedBrowsersElement))]
|
||||
public class OwaSupportedBrowsersElementCollection : ConfigurationElementCollection
|
||||
{
|
||||
protected override ConfigurationElement CreateNewElement()
|
||||
{
|
||||
return new OwaSupportedBrowsersElement();
|
||||
}
|
||||
|
||||
protected override object GetElementKey(ConfigurationElement element)
|
||||
{
|
||||
return ((OwaSupportedBrowsersElement)element).Browser;
|
||||
}
|
||||
}
|
||||
}
|
|
@ -15,6 +15,7 @@ namespace WebsitePanel.WebDavPortal.WebConfigSections
|
|||
private const string ConnectionStringsKey = "appConnectionStrings";
|
||||
private const string SessionKeysKey = "sessionKeys";
|
||||
private const string FileIconsKey = "fileIcons";
|
||||
private const string OwaSupportedBrowsersKey = "owaSupportedBrowsers";
|
||||
private const string OfficeOnlineKey = "officeOnline";
|
||||
|
||||
public const string SectionName = "webDavExplorerConfigurationSettings";
|
||||
|
@ -75,6 +76,13 @@ namespace WebsitePanel.WebDavPortal.WebConfigSections
|
|||
set { this[FileIconsKey] = value; }
|
||||
}
|
||||
|
||||
[ConfigurationProperty(OwaSupportedBrowsersKey, IsDefaultCollection = false)]
|
||||
public OwaSupportedBrowsersElementCollection OwaSupportedBrowsers
|
||||
{
|
||||
get { return (OwaSupportedBrowsersElementCollection)this[OwaSupportedBrowsersKey]; }
|
||||
set { this[OwaSupportedBrowsersKey] = value; }
|
||||
}
|
||||
|
||||
[ConfigurationProperty(OfficeOnlineKey, IsDefaultCollection = false)]
|
||||
public OfficeOnlineElementCollection OfficeOnline
|
||||
{
|
||||
|
|
|
@ -18,6 +18,7 @@ namespace WebsitePanel.WebDav.Core.Config
|
|||
FileIcons = new FileIconsDictionary();
|
||||
HttpErrors = new HttpErrorsCollection();
|
||||
OfficeOnline = new OfficeOnlineCollection();
|
||||
OwaSupportedBrowsers = new OwaSupportedBrowsersCollection();
|
||||
}
|
||||
|
||||
public static WebDavAppConfigManager Instance
|
||||
|
@ -51,5 +52,6 @@ namespace WebsitePanel.WebDav.Core.Config
|
|||
public FileIconsDictionary FileIcons { get; private set; }
|
||||
public HttpErrorsCollection HttpErrors { get; private set; }
|
||||
public OfficeOnlineCollection OfficeOnline { get; private set; }
|
||||
public OwaSupportedBrowsersCollection OwaSupportedBrowsers { get; private set; }
|
||||
}
|
||||
}
|
|
@ -1,6 +1,8 @@
|
|||
using System;
|
||||
using System.IO;
|
||||
using System.Threading;
|
||||
using Cobalt;
|
||||
using log4net;
|
||||
using WebsitePanel.WebDav.Core.Interfaces.Managers;
|
||||
using WebsitePanel.WebDav.Core.Interfaces.Owa;
|
||||
|
||||
|
@ -11,12 +13,16 @@ namespace WebsitePanel.WebDav.Core.Owa
|
|||
private readonly IWebDavManager _webDavManager;
|
||||
private readonly IWopiFileManager _fileManager;
|
||||
private readonly IAccessTokenManager _tokenManager;
|
||||
private readonly ILog Log;
|
||||
|
||||
public CobaltManager(IWebDavManager webDavManager, IWopiFileManager fileManager, IAccessTokenManager tokenManager)
|
||||
public CobaltManager(IWebDavManager webDavManager, IWopiFileManager fileManager,
|
||||
IAccessTokenManager tokenManager)
|
||||
{
|
||||
_webDavManager = webDavManager;
|
||||
_fileManager = fileManager;
|
||||
_tokenManager = tokenManager;
|
||||
|
||||
Log = LogManager.GetLogger(this.GetType());
|
||||
}
|
||||
|
||||
public Atom ProcessRequest(int accessTokenId, Stream requestStream)
|
||||
|
@ -27,30 +33,69 @@ namespace WebsitePanel.WebDav.Core.Owa
|
|||
|
||||
var requestBatch = new RequestBatch();
|
||||
|
||||
var cobaltFile = _fileManager.Get(token.FilePath) ?? _fileManager.Create(accessTokenId);
|
||||
|
||||
Object ctx;
|
||||
ProtocolVersion protocolVersion;
|
||||
|
||||
requestBatch.DeserializeInputFromProtocol(atomRequest, out ctx, out protocolVersion);
|
||||
|
||||
cobaltFile.CobaltEndpoint.ExecuteRequestBatch(requestBatch);
|
||||
|
||||
foreach (var request in requestBatch.Requests)
|
||||
try
|
||||
{
|
||||
if (request.GetType() == typeof(PutChangesRequest) && request.PartitionId == FilePartitionId.Content && request.CompletedSuccessfully)
|
||||
{
|
||||
using (var saveStream = new MemoryStream())
|
||||
{
|
||||
GenericFdaStream myCobaltStream = new GenericFda(cobaltFile.CobaltEndpoint, null).GetContentStream();
|
||||
myCobaltStream.CopyTo(saveStream);
|
||||
var cobaltFile = _fileManager.Get(token.FilePath) ?? _fileManager.Create(accessTokenId);
|
||||
|
||||
_webDavManager.UploadFile(token.FilePath, saveStream.ToArray());
|
||||
Object ctx;
|
||||
ProtocolVersion protocolVersion;
|
||||
|
||||
requestBatch.DeserializeInputFromProtocol(atomRequest, out ctx, out protocolVersion);
|
||||
cobaltFile.CobaltEndpoint.ExecuteRequestBatch(requestBatch);
|
||||
|
||||
|
||||
foreach (var request in requestBatch.Requests)
|
||||
{
|
||||
|
||||
if (request.GetType() == typeof (PutChangesRequest) &&
|
||||
request.PartitionId == FilePartitionId.Content && request.CompletedSuccessfully)
|
||||
{
|
||||
using (var saveStream = new MemoryStream())
|
||||
{
|
||||
CopyStream(cobaltFile, saveStream);
|
||||
_webDavManager.UploadFile(token.FilePath, saveStream.ToArray());
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
return requestBatch.SerializeOutputToProtocol(protocolVersion);
|
||||
}
|
||||
|
||||
return requestBatch.SerializeOutputToProtocol(protocolVersion);
|
||||
catch (Exception e)
|
||||
{
|
||||
Log.Error("Cobalt manager Process request", e);
|
||||
|
||||
throw;
|
||||
}
|
||||
}
|
||||
|
||||
private void CopyStream(CobaltFile file, Stream stream)
|
||||
{
|
||||
var tries = 3;
|
||||
|
||||
for (int i = 0; i < tries; i++)
|
||||
{
|
||||
try
|
||||
{
|
||||
GenericFdaStream myCobaltStream = new GenericFda(file.CobaltEndpoint, null).GetContentStream();
|
||||
|
||||
myCobaltStream.CopyTo(stream);
|
||||
|
||||
break;
|
||||
}
|
||||
catch (Exception)
|
||||
{
|
||||
//unable to read update - save failed
|
||||
if (i == tries - 1)
|
||||
{
|
||||
throw;
|
||||
}
|
||||
|
||||
//waiting for cobalt completion
|
||||
Thread.Sleep(50);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
|
@ -104,6 +104,7 @@
|
|||
<Compile Include="Config\Entities\FileIconsDictionary.cs" />
|
||||
<Compile Include="Config\Entities\HttpErrorsCollection.cs" />
|
||||
<Compile Include="Config\Entities\OfficeOnlineCollection.cs" />
|
||||
<Compile Include="Config\Entities\OwaSupportedBrowsersCollection.cs" />
|
||||
<Compile Include="Config\Entities\SessionKeysCollection.cs" />
|
||||
<Compile Include="Config\Entities\WebsitePanelConstantUserParameters.cs" />
|
||||
<Compile Include="Config\IWebDavAppConfig.cs" />
|
||||
|
@ -114,6 +115,8 @@
|
|||
<Compile Include="Config\WebConfigSections\FileIconsElementCollection.cs" />
|
||||
<Compile Include="Config\WebConfigSections\OfficeOnlineElement.cs" />
|
||||
<Compile Include="Config\WebConfigSections\OfficeOnlineElementCollection.cs" />
|
||||
<Compile Include="Config\WebConfigSections\OwaSupportedBrowsersElement.cs" />
|
||||
<Compile Include="Config\WebConfigSections\OwaSupportedBrowsersElementCollection.cs" />
|
||||
<Compile Include="Config\WebConfigSections\SessionKeysElement.cs" />
|
||||
<Compile Include="Config\WebConfigSections\SessionKeysElementCollection.cs" />
|
||||
<Compile Include="Config\WebConfigSections\UserDomainElement.cs" />
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue