ShareX/ShareX.UploadersLib/FileUploaders/OwnCloud.cs

245 lines
9.3 KiB
C#
Raw Normal View History

2014-07-07 02:56:43 +12:00
#region License Information (GPL v3)
/*
ShareX - A program that allows you to take screenshots and share any file type
2024-01-03 12:57:14 +13:00
Copyright (c) 2007-2024 ShareX Team
2014-07-07 02:56:43 +12:00
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License
as published by the Free Software Foundation; either version 2
of the License, or (at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
Optionally you can also view the license at <http://www.gnu.org/licenses/>.
*/
#endregion License Information (GPL v3)
2014-07-07 06:45:36 +12:00
using Newtonsoft.Json;
using Newtonsoft.Json.Linq;
2014-12-11 12:19:28 +13:00
using ShareX.HelpersLib;
2016-06-28 05:20:55 +12:00
using ShareX.UploadersLib.Properties;
2014-07-07 02:56:43 +12:00
using System;
using System.Collections.Generic;
using System.Collections.Specialized;
2016-06-28 05:20:55 +12:00
using System.Drawing;
2014-07-07 02:56:43 +12:00
using System.IO;
using System.Windows.Forms;
2014-07-07 02:56:43 +12:00
2014-12-11 09:25:20 +13:00
namespace ShareX.UploadersLib.FileUploaders
2014-07-07 02:56:43 +12:00
{
public class OwnCloudFileUploaderService : FileUploaderService
{
public override FileDestination EnumValue { get; } = FileDestination.OwnCloud;
2016-06-28 05:20:55 +12:00
public override Image ServiceImage => Resources.OwnCloud;
public override bool CheckConfig(UploadersConfig config)
{
return !string.IsNullOrEmpty(config.OwnCloudHost) && !string.IsNullOrEmpty(config.OwnCloudUsername) && !string.IsNullOrEmpty(config.OwnCloudPassword);
}
public override GenericUploader CreateUploader(UploadersConfig config, TaskReferenceHelper taskInfo)
{
return new OwnCloud(config.OwnCloudHost, config.OwnCloudUsername, config.OwnCloudPassword)
{
Path = config.OwnCloudPath,
CreateShare = config.OwnCloudCreateShare,
DirectLink = config.OwnCloudDirectLink,
PreviewLink = config.OwnCloudUsePreviewLinks,
2021-12-29 02:35:47 +13:00
AppendFileNameToURL = config.OwnCloudAppendFileNameToURL,
2018-09-11 04:55:07 +12:00
IsCompatibility81 = config.OwnCloud81Compatibility,
AutoExpireTime = config.OwnCloudExpiryTime,
2018-09-11 04:55:07 +12:00
AutoExpire = config.OwnCloudAutoExpire
};
}
public override TabPage GetUploadersConfigTabPage(UploadersConfigForm form) => form.tpOwnCloud;
}
2014-07-07 02:56:43 +12:00
public sealed class OwnCloud : FileUploader
{
public string Host { get; set; }
public string Username { get; set; }
public string Password { get; set; }
public string Path { get; set; }
public int AutoExpireTime { get; set; }
public bool CreateShare { get; set; }
2021-12-29 02:35:47 +13:00
public bool AppendFileNameToURL { get; set; }
2014-07-07 09:06:37 +12:00
public bool DirectLink { get; set; }
public bool PreviewLink { get; set; }
public bool IsCompatibility81 { get; set; }
2018-09-11 04:55:07 +12:00
public bool AutoExpire { get; set; }
2014-07-07 02:56:43 +12:00
public OwnCloud(string host, string username, string password)
2014-07-07 02:56:43 +12:00
{
Host = host;
Username = username;
Password = password;
2014-07-07 04:29:26 +12:00
}
2014-07-07 02:56:43 +12:00
public override UploadResult Upload(Stream stream, string fileName)
{
if (string.IsNullOrEmpty(Host))
{
throw new Exception("ownCloud Host is empty.");
}
if (string.IsNullOrEmpty(Username) || string.IsNullOrEmpty(Password))
{
throw new Exception("ownCloud Username or Password is empty.");
}
if (string.IsNullOrEmpty(Path))
{
Path = "/";
}
// Original, unencoded path. Necessary for shared files
2014-07-07 06:45:36 +12:00
string path = URLHelpers.CombineURL(Path, fileName);
// Encoded path, necessary when sent in the URL
string encodedPath = URLHelpers.CombineURL(Path, URLHelpers.URLEncode(fileName));
string url = URLHelpers.CombineURL(Host, "remote.php/webdav", encodedPath);
url = URLHelpers.FixPrefix(url);
2017-03-30 10:03:08 +13:00
2019-03-15 00:06:54 +13:00
NameValueCollection headers = RequestHelpers.CreateAuthenticationHeader(Username, Password);
2016-12-24 10:34:07 +13:00
headers["OCS-APIREQUEST"] = "true";
2017-03-30 10:03:08 +13:00
2024-03-03 05:12:41 +13:00
string response = SendRequest(HttpMethod.PUT, url, stream, MimeTypes.GetMimeTypeFromFileName(fileName), null, headers);
UploadResult result = new UploadResult(response);
2014-08-11 22:40:14 +12:00
if (!IsError)
{
if (CreateShare)
{
AllowReportProgress = false;
2021-10-28 02:26:06 +13:00
result.URL = ShareFile(path, fileName);
}
else
2014-08-11 22:40:14 +12:00
{
result.IsURLExpected = false;
2014-08-11 22:40:14 +12:00
}
}
return result;
2014-07-07 02:56:43 +12:00
}
2014-07-07 06:45:36 +12:00
2018-09-11 04:55:07 +12:00
// https://doc.owncloud.org/server/10.0/developer_manual/core/ocs-share-api.html#create-a-new-share
2021-10-28 02:26:06 +13:00
public string ShareFile(string path, string fileName)
2014-07-07 06:45:36 +12:00
{
Dictionary<string, string> args = new Dictionary<string, string>();
args.Add("path", path); // path to the file/folder which should be shared
args.Add("shareType", "3"); // 0 = user; 1 = group; 3 = public link
// args.Add("shareWith", ""); // user / group id with which the file should be shared
// args.Add("publicUpload", "false"); // allow public upload to a public shared folder (true/false)
// args.Add("password", ""); // password to protect public link Share with
args.Add("permissions", "1"); // 1 = read; 2 = update; 4 = create; 8 = delete; 16 = share; 31 = all (default: 31, for public shares: 1)
2018-09-11 04:55:07 +12:00
if (AutoExpire)
{
if (AutoExpireTime == 0)
2018-09-11 04:55:07 +12:00
{
throw new Exception("ownCloud Auto Epxire Time is not valid.");
2018-09-11 04:55:07 +12:00
}
else
{
try
{
DateTime expireTime = DateTime.UtcNow.AddDays(AutoExpireTime);
2018-09-11 04:55:07 +12:00
args.Add("expireDate", $"{expireTime.Year}-{expireTime.Month}-{expireTime.Day}");
}
catch
{
throw new Exception("ownCloud Auto Expire time is invalid");
}
}
}
2014-07-07 06:45:36 +12:00
string url = URLHelpers.CombineURL(Host, "ocs/v1.php/apps/files_sharing/api/v1/shares?format=json");
url = URLHelpers.FixPrefix(url);
2017-03-30 10:03:08 +13:00
2019-03-15 00:06:54 +13:00
NameValueCollection headers = RequestHelpers.CreateAuthenticationHeader(Username, Password);
headers["OCS-APIREQUEST"] = "true";
2017-03-30 10:03:08 +13:00
string response = SendRequestMultiPart(url, args, headers);
2014-07-07 06:45:36 +12:00
if (!string.IsNullOrEmpty(response))
{
OwnCloudShareResponse result = JsonConvert.DeserializeObject<OwnCloudShareResponse>(response);
if (result != null && result.ocs != null && result.ocs.meta != null)
{
if (result.ocs.data != null && result.ocs.meta.statuscode == 100)
{
OwnCloudShareResponseData data = ((JObject)result.ocs.data).ToObject<OwnCloudShareResponseData>();
string link = data.url;
2021-10-28 02:26:06 +13:00
if (PreviewLink && FileHelpers.IsImageFile(path))
{
2019-01-09 11:35:34 +13:00
link += "/preview";
}
else if (DirectLink)
{
2021-10-28 02:26:06 +13:00
if (IsCompatibility81)
{
link += "/download";
}
else
{
link += "&download";
}
2021-12-29 02:35:47 +13:00
if (AppendFileNameToURL)
2021-10-28 02:26:06 +13:00
{
link = URLHelpers.CombineURL(link, URLHelpers.URLEncode(fileName));
}
}
2021-10-28 02:26:06 +13:00
2014-07-07 09:06:37 +12:00
return link;
2014-07-07 06:45:36 +12:00
}
else
{
Errors.Add(string.Format("Status: {0}\r\nStatus code: {1}\r\nMessage: {2}", result.ocs.meta.status, result.ocs.meta.statuscode, result.ocs.meta.message));
}
}
}
return null;
}
public class OwnCloudShareResponse
{
public OwnCloudShareResponseOcs ocs { get; set; }
}
public class OwnCloudShareResponseOcs
{
public OwnCloudShareResponseMeta meta { get; set; }
public object data { get; set; }
2014-07-07 06:45:36 +12:00
}
public class OwnCloudShareResponseMeta
{
public string status { get; set; }
public int statuscode { get; set; }
public string message { get; set; }
}
public class OwnCloudShareResponseData
{
public int id { get; set; }
public string url { get; set; }
public string token { get; set; }
}
2014-07-07 02:56:43 +12:00
}
2023-10-30 01:05:47 +13:00
}