ShareX/ShareX/UploadInfoParser.cs

84 lines
4.0 KiB
C#

#region License Information (GPL v3)
/*
ShareX - A program that allows you to take screenshots and share any file type
Copyright (c) 2007-2024 ShareX Team
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)
using ShareX.HelpersLib;
using System.IO;
namespace ShareX
{
public class UploadInfoParser : NameParser
{
public const string HTMLLink = "<a href=\"$url\">$url</a>";
public const string HTMLImage = "<img src=\"$url\">";
public const string HTMLLinkedImage = "<a href=\"$url\"><img src=\"$thumbnailurl\"></a>";
public const string ForumLink = "[url]$url[/url]";
public const string ForumImage = "[img]$url[/img]";
public const string ForumLinkedImage = "[url=$url][img]$thumbnailurl[/img][/url]";
public const string WikiImage = "[$url]";
public const string WikiLinkedImage = "[$url $thumbnailurl]";
public const string MarkdownLink = "[$url]($url)";
public const string MarkdownImage = "![]($url)";
public const string MarkdownLinkedImage = "[![]($thumbnailurl)]($url)";
public string Parse(TaskInfo info, string pattern)
{
if (info != null && !string.IsNullOrEmpty(pattern))
{
pattern = Parse(pattern);
if (info.Result != null)
{
string result = info.Result.ToString();
if (string.IsNullOrEmpty(result) && !string.IsNullOrEmpty(info.FilePath))
{
result = info.FilePath;
}
pattern = pattern.Replace("$result", result ?? "");
pattern = pattern.Replace("$url", info.Result.URL ?? "");
pattern = pattern.Replace("$shorturl", info.Result.ShortenedURL ?? "");
pattern = pattern.Replace("$thumbnailurl", info.Result.ThumbnailURL ?? "");
pattern = pattern.Replace("$deletionurl", info.Result.DeletionURL ?? "");
}
pattern = pattern.Replace("$filenamenoext", !string.IsNullOrEmpty(info.FileName) ? Path.GetFileNameWithoutExtension(info.FileName) : "");
pattern = pattern.Replace("$filename", info.FileName ?? "");
pattern = pattern.Replace("$filepath", info.FilePath ?? "");
pattern = pattern.Replace("$folderpath", !string.IsNullOrEmpty(info.FilePath) ? Path.GetDirectoryName(info.FilePath) : "");
pattern = pattern.Replace("$foldername", !string.IsNullOrEmpty(info.FilePath) ? Path.GetFileName(Path.GetDirectoryName(info.FilePath)) : "");
pattern = pattern.Replace("$thumbnailfilenamenoext", !string.IsNullOrEmpty(info.ThumbnailFilePath) ? Path.GetFileNameWithoutExtension(info.ThumbnailFilePath) : "");
pattern = pattern.Replace("$thumbnailfilename", !string.IsNullOrEmpty(info.ThumbnailFilePath) ? Path.GetFileName(info.ThumbnailFilePath) : "");
if (info.UploadDuration != null)
{
pattern = pattern.Replace("$uploadtime", info.UploadDuration.ElapsedMilliseconds.ToString());
}
}
return pattern;
}
}
}