ShareX/ShareX.ImageEffectsLib/ImageEffectPackager.cs

98 lines
3.4 KiB
C#
Raw Normal View History

2020-06-16 11:21:20 +12:00
#region License Information (GPL v3)
/*
ShareX - A program that allows you to take screenshots and share any file type
Copyright (c) 2007-2020 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.Collections.Generic;
using System.IO;
using System.Linq;
using System.Text;
using System.Windows.Forms;
2020-06-16 11:21:20 +12:00
namespace ShareX.ImageEffectsLib
{
2020-06-16 18:02:32 +12:00
public static class ImageEffectPackager
2020-06-16 11:21:20 +12:00
{
2020-06-16 17:31:14 +12:00
private const string ConfigFileName = "Config.json";
2020-06-16 13:08:17 +12:00
2020-06-16 18:02:32 +12:00
public static string Package(string outputFilePath, string configJson, string assetsFolderPath)
2020-06-16 11:21:20 +12:00
{
if (!string.IsNullOrEmpty(outputFilePath))
{
string outputFolder = Path.GetDirectoryName(outputFilePath);
Helpers.CreateDirectory(outputFolder);
2020-06-16 13:08:17 +12:00
string configFilePath = Path.Combine(outputFolder, ConfigFileName);
2020-06-16 18:02:32 +12:00
File.WriteAllText(configFilePath, configJson, Encoding.UTF8);
2020-06-16 11:21:20 +12:00
2020-06-17 19:14:31 +12:00
Dictionary<string, string> files = new Dictionary<string, string>();
files.Add(configFilePath, ConfigFileName);
if (!string.IsNullOrEmpty(assetsFolderPath) && Directory.Exists(assetsFolderPath))
2020-06-16 11:21:20 +12:00
{
2020-06-17 19:14:31 +12:00
string parentFolderPath = Directory.GetParent(assetsFolderPath).FullName;
int entryNamePosition = parentFolderPath.Length + 1;
2020-06-16 11:21:20 +12:00
2020-06-17 19:14:31 +12:00
foreach (string assetPath in Directory.EnumerateFiles(assetsFolderPath, "*.*", SearchOption.AllDirectories).Where(x => Helpers.IsImageFile(x)))
2020-06-16 11:21:20 +12:00
{
2020-06-17 19:14:31 +12:00
string entryName = assetPath.Substring(entryNamePosition);
files.Add(assetPath, entryName);
2020-06-16 11:21:20 +12:00
}
2020-06-17 19:14:31 +12:00
}
2020-06-16 11:21:20 +12:00
2020-06-17 19:14:31 +12:00
try
{
2020-06-16 11:21:20 +12:00
ZipManager.Compress(outputFilePath, files);
}
finally
{
2020-06-16 13:08:17 +12:00
File.Delete(configFilePath);
}
return outputFilePath;
2020-06-16 13:08:17 +12:00
}
return null;
2020-06-16 13:08:17 +12:00
}
2020-06-17 19:14:31 +12:00
public static string ExtractPackage(string packageFilePath, string destination)
2020-06-16 13:08:17 +12:00
{
2020-06-17 19:14:31 +12:00
if (!string.IsNullOrEmpty(packageFilePath) && File.Exists(packageFilePath) && !string.IsNullOrEmpty(destination))
2020-06-16 13:08:17 +12:00
{
2020-06-17 19:14:31 +12:00
string configFilePath = Path.Combine(destination, ConfigFileName);
2020-06-16 13:08:17 +12:00
2020-06-17 19:14:31 +12:00
if (File.Exists(configFilePath))
2020-06-16 13:08:17 +12:00
{
2020-06-17 19:14:31 +12:00
File.Delete(configFilePath);
}
2020-06-17 19:14:31 +12:00
ZipManager.Extract(packageFilePath, destination);
2020-06-16 13:08:17 +12:00
2020-06-17 19:14:31 +12:00
return configFilePath;
2020-06-16 11:21:20 +12:00
}
2020-06-16 13:08:17 +12:00
return null;
2020-06-16 11:21:20 +12:00
}
}
}