mirror of
https://github.com/QL-Win/QuickLook.git
synced 2025-09-12 18:39:45 +00:00
Support .ipa
This commit is contained in:
261
QuickLook.Plugin/QuickLook.Plugin.AppViewer/IpaInfoPanel.xaml
Normal file
261
QuickLook.Plugin/QuickLook.Plugin.AppViewer/IpaInfoPanel.xaml
Normal file
@@ -0,0 +1,261 @@
|
|||||||
|
<UserControl x:Class="QuickLook.Plugin.AppViewer.IpaInfoPanel"
|
||||||
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
||||||
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
||||||
|
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
||||||
|
xmlns:local="clr-namespace:QuickLook.Plugin.AppViewer"
|
||||||
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
||||||
|
FontSize="14"
|
||||||
|
UseLayoutRounding="True"
|
||||||
|
mc:Ignorable="d">
|
||||||
|
<Grid>
|
||||||
|
<Grid.RowDefinitions>
|
||||||
|
<RowDefinition Height="15" />
|
||||||
|
<RowDefinition Height="*" />
|
||||||
|
</Grid.RowDefinitions>
|
||||||
|
<Grid.ColumnDefinitions>
|
||||||
|
<ColumnDefinition Width="150" />
|
||||||
|
<ColumnDefinition Width="*" />
|
||||||
|
</Grid.ColumnDefinitions>
|
||||||
|
<Image x:Name="image"
|
||||||
|
Grid.Row="1"
|
||||||
|
Grid.Column="0"
|
||||||
|
Width="120"
|
||||||
|
Height="120"
|
||||||
|
Margin="8"
|
||||||
|
VerticalAlignment="Top"
|
||||||
|
Opacity="0"
|
||||||
|
Stretch="Fill">
|
||||||
|
<Image.Style>
|
||||||
|
<Style TargetType="{x:Type Image}">
|
||||||
|
<Style.Triggers>
|
||||||
|
<DataTrigger Binding="{Binding Source, ElementName=image}" Value="{x:Null}">
|
||||||
|
<DataTrigger.ExitActions>
|
||||||
|
<BeginStoryboard>
|
||||||
|
<Storyboard>
|
||||||
|
<DoubleAnimation BeginTime="0:0:0"
|
||||||
|
Storyboard.TargetProperty="Opacity"
|
||||||
|
From="0"
|
||||||
|
To="1"
|
||||||
|
Duration="0:0:0.05" />
|
||||||
|
</Storyboard>
|
||||||
|
</BeginStoryboard>
|
||||||
|
</DataTrigger.ExitActions>
|
||||||
|
</DataTrigger>
|
||||||
|
</Style.Triggers>
|
||||||
|
</Style>
|
||||||
|
</Image.Style>
|
||||||
|
</Image>
|
||||||
|
<Grid Grid.Row="1" Grid.Column="1">
|
||||||
|
<Grid.ColumnDefinitions>
|
||||||
|
<ColumnDefinition Width="5" />
|
||||||
|
<ColumnDefinition Width="Auto" />
|
||||||
|
<ColumnDefinition Width="*" />
|
||||||
|
<ColumnDefinition Width="10" />
|
||||||
|
</Grid.ColumnDefinitions>
|
||||||
|
<Grid.RowDefinitions>
|
||||||
|
<RowDefinition Height="10" />
|
||||||
|
<RowDefinition Height="Auto" />
|
||||||
|
<RowDefinition Height="10" />
|
||||||
|
<RowDefinition Height="Auto" />
|
||||||
|
<RowDefinition Height="Auto" />
|
||||||
|
<RowDefinition Height="Auto" />
|
||||||
|
<RowDefinition Height="Auto" />
|
||||||
|
<RowDefinition Height="Auto" />
|
||||||
|
<RowDefinition Height="Auto" />
|
||||||
|
<RowDefinition Height="Auto" />
|
||||||
|
<RowDefinition Height="Auto" />
|
||||||
|
<RowDefinition Height="Auto" />
|
||||||
|
<RowDefinition Height="*" />
|
||||||
|
</Grid.RowDefinitions>
|
||||||
|
<Grid Grid.Row="1"
|
||||||
|
Grid.Column="1"
|
||||||
|
Grid.ColumnSpan="2">
|
||||||
|
<Grid.ColumnDefinitions>
|
||||||
|
<ColumnDefinition Width="*" />
|
||||||
|
<ColumnDefinition Width="Auto" />
|
||||||
|
</Grid.ColumnDefinitions>
|
||||||
|
<TextBlock Grid.Column="0"
|
||||||
|
MaxHeight="60"
|
||||||
|
Padding="3"
|
||||||
|
FontSize="19"
|
||||||
|
FontWeight="SemiBold"
|
||||||
|
LineHeight="25"
|
||||||
|
TextTrimming="CharacterEllipsis"
|
||||||
|
TextWrapping="Wrap">
|
||||||
|
<TextBlock.Inlines>
|
||||||
|
<Run x:Name="filename" Text="FilenameFilenameFilenameFilenameFilenameFilenameFilenameFilenameFilenameFilename.ext" />
|
||||||
|
</TextBlock.Inlines>
|
||||||
|
</TextBlock>
|
||||||
|
</Grid>
|
||||||
|
<!-- Application Name -->
|
||||||
|
<TextBlock x:Name="applicationNameTitle"
|
||||||
|
Grid.Row="3"
|
||||||
|
Grid.Column="1"
|
||||||
|
Padding="3"
|
||||||
|
Foreground="{DynamicResource WindowTextForegroundAlternative}"
|
||||||
|
Text="Application Name" />
|
||||||
|
<TextBlock x:Name="applicationName"
|
||||||
|
Grid.Row="3"
|
||||||
|
Grid.Column="2"
|
||||||
|
Margin="8,0,0,0"
|
||||||
|
Padding="3"
|
||||||
|
Foreground="{DynamicResource WindowTextForegroundAlternative}"
|
||||||
|
Text="Searching..."
|
||||||
|
TextTrimming="CharacterEllipsis"
|
||||||
|
TextWrapping="Wrap" />
|
||||||
|
<!-- Version Name -->
|
||||||
|
<TextBlock x:Name="versionNameTitle"
|
||||||
|
Grid.Row="4"
|
||||||
|
Grid.Column="1"
|
||||||
|
Padding="3"
|
||||||
|
Foreground="{DynamicResource WindowTextForegroundAlternative}"
|
||||||
|
Text="Version" />
|
||||||
|
<TextBlock x:Name="versionName"
|
||||||
|
Grid.Row="4"
|
||||||
|
Grid.Column="2"
|
||||||
|
Margin="8,0,0,0"
|
||||||
|
Padding="3"
|
||||||
|
Foreground="{DynamicResource WindowTextForegroundAlternative}"
|
||||||
|
Text="Searching..."
|
||||||
|
TextTrimming="CharacterEllipsis"
|
||||||
|
TextWrapping="Wrap" />
|
||||||
|
<!-- Version Code -->
|
||||||
|
<TextBlock x:Name="versionCodeTitle"
|
||||||
|
Grid.Row="5"
|
||||||
|
Grid.Column="1"
|
||||||
|
Padding="3"
|
||||||
|
Foreground="{DynamicResource WindowTextForegroundAlternative}"
|
||||||
|
Text="Version Code" />
|
||||||
|
<TextBlock x:Name="versionCode"
|
||||||
|
Grid.Row="5"
|
||||||
|
Grid.Column="2"
|
||||||
|
Margin="8,0,0,0"
|
||||||
|
Padding="3"
|
||||||
|
Foreground="{DynamicResource WindowTextForegroundAlternative}"
|
||||||
|
Text="Searching..."
|
||||||
|
TextTrimming="CharacterEllipsis"
|
||||||
|
TextWrapping="Wrap" />
|
||||||
|
<!-- Package Name -->
|
||||||
|
<TextBlock x:Name="packageNameTitle"
|
||||||
|
Grid.Row="6"
|
||||||
|
Grid.Column="1"
|
||||||
|
Padding="3"
|
||||||
|
Foreground="{DynamicResource WindowTextForegroundAlternative}"
|
||||||
|
Text="Package Name" />
|
||||||
|
<TextBlock x:Name="packageName"
|
||||||
|
Grid.Row="6"
|
||||||
|
Grid.Column="2"
|
||||||
|
Margin="8,0,0,0"
|
||||||
|
Padding="3"
|
||||||
|
Foreground="{DynamicResource WindowTextForegroundAlternative}"
|
||||||
|
Text="Searching..."
|
||||||
|
TextTrimming="CharacterEllipsis"
|
||||||
|
TextWrapping="Wrap" />
|
||||||
|
<!-- Device Family -->
|
||||||
|
<TextBlock x:Name="deviceFamilyTitle"
|
||||||
|
Grid.Row="7"
|
||||||
|
Grid.Column="1"
|
||||||
|
Padding="3"
|
||||||
|
Foreground="{DynamicResource WindowTextForegroundAlternative}"
|
||||||
|
Text="Device Family" />
|
||||||
|
<TextBlock x:Name="deviceFamily"
|
||||||
|
Grid.Row="7"
|
||||||
|
Grid.Column="2"
|
||||||
|
Margin="8,0,0,0"
|
||||||
|
Padding="3"
|
||||||
|
Foreground="{DynamicResource WindowTextForegroundAlternative}"
|
||||||
|
Text="Searching..."
|
||||||
|
TextTrimming="CharacterEllipsis"
|
||||||
|
TextWrapping="Wrap" />
|
||||||
|
<!-- MinimumOSVersion -->
|
||||||
|
<TextBlock x:Name="minimumOSVersionTitle"
|
||||||
|
Grid.Row="8"
|
||||||
|
Grid.Column="1"
|
||||||
|
Padding="3"
|
||||||
|
Foreground="{DynamicResource WindowTextForegroundAlternative}"
|
||||||
|
Text="MinimumOSVersion" />
|
||||||
|
<TextBlock x:Name="minimumOSVersion"
|
||||||
|
Grid.Row="8"
|
||||||
|
Grid.Column="2"
|
||||||
|
Margin="8,0,0,0"
|
||||||
|
Padding="3"
|
||||||
|
Foreground="{DynamicResource WindowTextForegroundAlternative}"
|
||||||
|
Text="Searching..."
|
||||||
|
TextTrimming="CharacterEllipsis"
|
||||||
|
TextWrapping="Wrap" />
|
||||||
|
<!-- PlatformVersion -->
|
||||||
|
<TextBlock x:Name="platformVersionTitle"
|
||||||
|
Grid.Row="9"
|
||||||
|
Grid.Column="1"
|
||||||
|
Padding="3"
|
||||||
|
Foreground="{DynamicResource WindowTextForegroundAlternative}"
|
||||||
|
Text="PlatformVersion" />
|
||||||
|
<TextBlock x:Name="platformVersion"
|
||||||
|
Grid.Row="9"
|
||||||
|
Grid.Column="2"
|
||||||
|
Margin="8,0,0,0"
|
||||||
|
Padding="3"
|
||||||
|
Foreground="{DynamicResource WindowTextForegroundAlternative}"
|
||||||
|
Text="Searching..."
|
||||||
|
TextTrimming="CharacterEllipsis"
|
||||||
|
TextWrapping="Wrap" />
|
||||||
|
<!-- Total Size -->
|
||||||
|
<TextBlock x:Name="totalSizeTitle"
|
||||||
|
Grid.Row="10"
|
||||||
|
Grid.Column="1"
|
||||||
|
Padding="3"
|
||||||
|
Foreground="{DynamicResource WindowTextForegroundAlternative}"
|
||||||
|
Text="Total Size" />
|
||||||
|
<TextBlock x:Name="totalSize"
|
||||||
|
Grid.Row="10"
|
||||||
|
Grid.Column="2"
|
||||||
|
Margin="8,0,0,0"
|
||||||
|
Padding="3"
|
||||||
|
Foreground="{DynamicResource WindowTextForegroundAlternative}"
|
||||||
|
Text="Calculating size..." />
|
||||||
|
<!-- Last Modified -->
|
||||||
|
<TextBlock x:Name="modDateTitle"
|
||||||
|
Grid.Row="11"
|
||||||
|
Grid.Column="1"
|
||||||
|
Padding="3"
|
||||||
|
Foreground="{DynamicResource WindowTextForegroundAlternative}"
|
||||||
|
Text="Last Modified" />
|
||||||
|
<TextBlock x:Name="modDate"
|
||||||
|
Grid.Row="11"
|
||||||
|
Grid.Column="2"
|
||||||
|
Margin="8,0,0,0"
|
||||||
|
Padding="3"
|
||||||
|
Foreground="{DynamicResource WindowTextForegroundAlternative}"
|
||||||
|
Text="Searching..."
|
||||||
|
TextTrimming="CharacterEllipsis" />
|
||||||
|
<!-- Permissions -->
|
||||||
|
<GroupBox x:Name="permissionsGroupBox"
|
||||||
|
Grid.Row="12"
|
||||||
|
Grid.Column="1"
|
||||||
|
Grid.ColumnSpan="2"
|
||||||
|
Margin="0,0,16,16"
|
||||||
|
BorderThickness="0.4"
|
||||||
|
Header="Capabilities">
|
||||||
|
<ScrollViewer VerticalScrollBarVisibility="Auto">
|
||||||
|
<ScrollViewer.Resources>
|
||||||
|
<Style TargetType="{x:Type TextBox}">
|
||||||
|
<Setter Property="Background" Value="Transparent" />
|
||||||
|
<Setter Property="Foreground" Value="{DynamicResource TextFillColorPrimaryBrush}" />
|
||||||
|
<Setter Property="BorderThickness" Value="0" />
|
||||||
|
<Setter Property="BorderBrush" Value="Transparent" />
|
||||||
|
</Style>
|
||||||
|
</ScrollViewer.Resources>
|
||||||
|
<ItemsControl x:Name="permissions">
|
||||||
|
<ItemsControl.ItemTemplate>
|
||||||
|
<DataTemplate>
|
||||||
|
<TextBox Margin="8,3,16,3"
|
||||||
|
IsReadOnly="True"
|
||||||
|
Text="{Binding ., Mode=OneTime}" />
|
||||||
|
</DataTemplate>
|
||||||
|
</ItemsControl.ItemTemplate>
|
||||||
|
</ItemsControl>
|
||||||
|
</ScrollViewer>
|
||||||
|
</GroupBox>
|
||||||
|
</Grid>
|
||||||
|
</Grid>
|
||||||
|
</UserControl>
|
@@ -0,0 +1,98 @@
|
|||||||
|
// Copyright © 2017-2025 QL-Win Contributors
|
||||||
|
//
|
||||||
|
// This file is part of QuickLook program.
|
||||||
|
//
|
||||||
|
// 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 3 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, see <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
|
using QuickLook.Common.ExtensionMethods;
|
||||||
|
using QuickLook.Common.Helpers;
|
||||||
|
using QuickLook.Common.Plugin;
|
||||||
|
using QuickLook.Plugin.AppViewer.ApkPackageParser;
|
||||||
|
using QuickLook.Plugin.AppViewer.IpaPackageParser;
|
||||||
|
using System.Globalization;
|
||||||
|
using System.IO;
|
||||||
|
using System.Reflection;
|
||||||
|
using System.Threading.Tasks;
|
||||||
|
using System.Windows.Controls;
|
||||||
|
using System.Windows.Media.Imaging;
|
||||||
|
|
||||||
|
namespace QuickLook.Plugin.AppViewer;
|
||||||
|
|
||||||
|
public partial class IpaInfoPanel : UserControl, IAppInfoPanel
|
||||||
|
{
|
||||||
|
private ContextObject _context;
|
||||||
|
|
||||||
|
public IpaInfoPanel(ContextObject context)
|
||||||
|
{
|
||||||
|
_context = context;
|
||||||
|
|
||||||
|
DataContext = this;
|
||||||
|
InitializeComponent();
|
||||||
|
|
||||||
|
string translationFile = Path.Combine(Path.GetDirectoryName(Assembly.GetExecutingAssembly().Location), "Translations.config");
|
||||||
|
applicationNameTitle.Text = TranslationHelper.Get("APP_NAME", translationFile);
|
||||||
|
versionNameTitle.Text = TranslationHelper.Get("APP_VERSION_NAME", translationFile);
|
||||||
|
versionCodeTitle.Text = TranslationHelper.Get("APP_VERSION_CODE", translationFile);
|
||||||
|
packageNameTitle.Text = TranslationHelper.Get("PACKAGE_NAME", translationFile);
|
||||||
|
minimumOSVersionTitle.Text = TranslationHelper.Get("APP_MIN_OS_VERSION", translationFile);
|
||||||
|
platformVersionTitle.Text = TranslationHelper.Get("APP_TARGET_OS_VERSION", translationFile);
|
||||||
|
totalSizeTitle.Text = TranslationHelper.Get("TOTAL_SIZE", translationFile);
|
||||||
|
modDateTitle.Text = TranslationHelper.Get("LAST_MODIFIED", translationFile);
|
||||||
|
permissionsGroupBox.Header = TranslationHelper.Get("PERMISSIONS", translationFile);
|
||||||
|
}
|
||||||
|
|
||||||
|
public void DisplayInfo(string path)
|
||||||
|
{
|
||||||
|
var name = Path.GetFileName(path);
|
||||||
|
filename.Text = string.IsNullOrEmpty(name) ? path : name;
|
||||||
|
|
||||||
|
_ = Task.Run(() =>
|
||||||
|
{
|
||||||
|
if (File.Exists(path))
|
||||||
|
{
|
||||||
|
var size = new FileInfo(path).Length;
|
||||||
|
IpaInfo ipaInfo = IpaParser.Parse(path);
|
||||||
|
var last = File.GetLastWriteTime(path);
|
||||||
|
|
||||||
|
Dispatcher.Invoke(() =>
|
||||||
|
{
|
||||||
|
applicationName.Text = ipaInfo.DisplayName;
|
||||||
|
versionName.Text = ipaInfo.VersionName;
|
||||||
|
versionCode.Text = ipaInfo.VersionCode;
|
||||||
|
packageName.Text = ipaInfo.Identifier;
|
||||||
|
deviceFamily.Text = ipaInfo.DeviceFamily;
|
||||||
|
minimumOSVersion.Text = ipaInfo.MinimumOSVersion;
|
||||||
|
platformVersion.Text = ipaInfo.PlatformVersion;
|
||||||
|
totalSize.Text = size.ToPrettySize(2);
|
||||||
|
modDate.Text = last.ToString(CultureInfo.CurrentCulture);
|
||||||
|
permissions.ItemsSource = ipaInfo.Permissions;
|
||||||
|
|
||||||
|
if (ipaInfo.Logo != null)
|
||||||
|
{
|
||||||
|
using var stream = new MemoryStream(ipaInfo.Logo);
|
||||||
|
var icon = new BitmapImage();
|
||||||
|
icon.BeginInit();
|
||||||
|
icon.CacheOption = BitmapCacheOption.OnLoad;
|
||||||
|
icon.StreamSource = stream;
|
||||||
|
icon.EndInit();
|
||||||
|
icon.Freeze();
|
||||||
|
image.Source = icon;
|
||||||
|
}
|
||||||
|
|
||||||
|
_context.IsBusy = false;
|
||||||
|
});
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
@@ -0,0 +1,43 @@
|
|||||||
|
// Copyright © 2017-2025 QL-Win Contributors
|
||||||
|
//
|
||||||
|
// This file is part of QuickLook program.
|
||||||
|
//
|
||||||
|
// 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 3 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, see <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
|
using System.Linq;
|
||||||
|
|
||||||
|
namespace QuickLook.Plugin.AppViewer.IpaPackageParser;
|
||||||
|
|
||||||
|
public class IpaInfo
|
||||||
|
{
|
||||||
|
public string DisplayName { get; set; }
|
||||||
|
|
||||||
|
public string VersionName { get; set; }
|
||||||
|
|
||||||
|
public string VersionCode { get; set; }
|
||||||
|
|
||||||
|
public string Identifier { get; set; }
|
||||||
|
|
||||||
|
public string MinimumOSVersion { get; set; }
|
||||||
|
|
||||||
|
public string PlatformVersion { get; set; }
|
||||||
|
|
||||||
|
public string DeviceFamily { get; set; }
|
||||||
|
|
||||||
|
public string[] Permissions { get; set; } = [];
|
||||||
|
|
||||||
|
public byte[] Logo { get; set; }
|
||||||
|
|
||||||
|
public bool HasIcon => Logo?.Any() ?? false;
|
||||||
|
}
|
@@ -0,0 +1,41 @@
|
|||||||
|
// Copyright © 2017-2025 QL-Win Contributors
|
||||||
|
//
|
||||||
|
// This file is part of QuickLook program.
|
||||||
|
//
|
||||||
|
// 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 3 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, see <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
|
using System.Linq;
|
||||||
|
|
||||||
|
namespace QuickLook.Plugin.AppViewer.IpaPackageParser;
|
||||||
|
|
||||||
|
public static class IpaParser
|
||||||
|
{
|
||||||
|
public static IpaInfo Parse(string path)
|
||||||
|
{
|
||||||
|
IpaReader reader = new(path);
|
||||||
|
|
||||||
|
return new IpaInfo()
|
||||||
|
{
|
||||||
|
DisplayName = reader.DisplayName,
|
||||||
|
VersionName = reader.ShortVersionString,
|
||||||
|
VersionCode = reader.Version,
|
||||||
|
Identifier = reader.Identifier,
|
||||||
|
DeviceFamily = reader.DeviceFamily,
|
||||||
|
MinimumOSVersion = reader.MinimumOSVersion,
|
||||||
|
PlatformVersion = reader.PlatformVersion,
|
||||||
|
Permissions = [.. reader.InfoPlistDict.Keys.Where(key => key.StartsWith("NS") && key.EndsWith("UsageDescription"))],
|
||||||
|
Logo = reader.Icon,
|
||||||
|
};
|
||||||
|
}
|
||||||
|
}
|
@@ -0,0 +1,187 @@
|
|||||||
|
// Copyright © 2017-2025 QL-Win Contributors
|
||||||
|
//
|
||||||
|
// This file is part of QuickLook program.
|
||||||
|
//
|
||||||
|
// 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 3 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, see <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
|
using ICSharpCode.SharpZipLib.Zip;
|
||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.IO;
|
||||||
|
using System.Linq;
|
||||||
|
using System.Text.RegularExpressions;
|
||||||
|
|
||||||
|
namespace QuickLook.Plugin.AppViewer.IpaPackageParser;
|
||||||
|
|
||||||
|
public class IpaReader
|
||||||
|
{
|
||||||
|
private ZipFile zip;
|
||||||
|
private string appRoot;
|
||||||
|
|
||||||
|
public Dictionary<string, object> InfoPlistDict { get; set; }
|
||||||
|
|
||||||
|
public Dictionary<string, object> ItunesMetadataDic { get; set; }
|
||||||
|
|
||||||
|
public string DisplayName { get; set; }
|
||||||
|
|
||||||
|
public string ShortVersionString { get; set; }
|
||||||
|
|
||||||
|
public string Version { get; set; }
|
||||||
|
|
||||||
|
public string Identifier { get; set; }
|
||||||
|
|
||||||
|
public byte[] Icon { get; set; }
|
||||||
|
|
||||||
|
public string IconName { get; set; }
|
||||||
|
|
||||||
|
public string DeviceFamily { get; set; }
|
||||||
|
|
||||||
|
public string MinimumOSVersion { get; set; }
|
||||||
|
|
||||||
|
public string PlatformVersion { get; set; }
|
||||||
|
|
||||||
|
public IpaReader(string path)
|
||||||
|
{
|
||||||
|
Open(new FileStream(path, FileMode.Open, FileAccess.Read, FileShare.Read));
|
||||||
|
}
|
||||||
|
|
||||||
|
public IpaReader(Stream stream)
|
||||||
|
{
|
||||||
|
Open(stream);
|
||||||
|
}
|
||||||
|
|
||||||
|
protected void Dispose()
|
||||||
|
{
|
||||||
|
zip?.Close();
|
||||||
|
zip = null;
|
||||||
|
}
|
||||||
|
|
||||||
|
private void Open(Stream stream)
|
||||||
|
{
|
||||||
|
zip = new ZipFile(stream);
|
||||||
|
byte[] infoPlistData = null;
|
||||||
|
|
||||||
|
// Info.plist
|
||||||
|
{
|
||||||
|
foreach (ZipEntry entry in zip)
|
||||||
|
{
|
||||||
|
Match m = Regex.Match(entry.Name, @"(Payload/.*\.app/)Info\.plist");
|
||||||
|
|
||||||
|
if (m.Success)
|
||||||
|
{
|
||||||
|
appRoot = m.Groups[1].Value;
|
||||||
|
ZipEntry infoPlist = zip.GetEntry(appRoot);
|
||||||
|
using var s = new BinaryReader(zip.GetInputStream(entry));
|
||||||
|
infoPlistData = s.ReadBytes((int)entry.Size);
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (Plist.ReadPlist(infoPlistData) is Dictionary<string, object> dict)
|
||||||
|
{
|
||||||
|
InfoPlistDict = dict;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
{
|
||||||
|
if (InfoPlistDict.TryGetValue("CFBundleDisplayName", out object value) && value is string stringValue)
|
||||||
|
{
|
||||||
|
DisplayName = stringValue;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
{
|
||||||
|
if (InfoPlistDict.TryGetValue("CFBundleShortVersionString", out object value) && value is string stringValue)
|
||||||
|
{
|
||||||
|
ShortVersionString = stringValue;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
{
|
||||||
|
if (InfoPlistDict.TryGetValue("CFBundleVersion", out object value) && value is string stringValue)
|
||||||
|
{
|
||||||
|
Version = stringValue;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
{
|
||||||
|
if (InfoPlistDict.TryGetValue("CFBundleIdentifier", out object value) && value is string stringValue)
|
||||||
|
{
|
||||||
|
Identifier = stringValue;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
{
|
||||||
|
if (InfoPlistDict.TryGetValue("MinimumOSVersion", out object value) && value is string stringValue)
|
||||||
|
{
|
||||||
|
MinimumOSVersion = $"iOS {stringValue}";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
{
|
||||||
|
if (InfoPlistDict.TryGetValue("DTPlatformVersion", out object value) && value is string stringValue)
|
||||||
|
{
|
||||||
|
PlatformVersion = $"iOS {stringValue}";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
{
|
||||||
|
if (InfoPlistDict.TryGetValue("UIDeviceFamily", out object familyNode) && familyNode is IEnumerable<object> list)
|
||||||
|
{
|
||||||
|
DeviceFamily = string.Join(", ",
|
||||||
|
list.Select(deviceId => Convert.ToInt32(deviceId) switch
|
||||||
|
{
|
||||||
|
1 => "iPhone",
|
||||||
|
2 => "iPad",
|
||||||
|
3 => "Apple TV",
|
||||||
|
4 => "Apple Watch",
|
||||||
|
5 => "HomePod",
|
||||||
|
6 => "Mac",
|
||||||
|
7 => "Apple Vision Pro",
|
||||||
|
_ => "Unknown Device"
|
||||||
|
})
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
{
|
||||||
|
if (InfoPlistDict.TryGetValue("CFBundleIcons", out object iconsNode) && iconsNode is IDictionary<string, object> icons)
|
||||||
|
{
|
||||||
|
if (icons.TryGetValue("CFBundlePrimaryIcon", out object primaryIconsNode) && primaryIconsNode is IDictionary<string, object> primaryIcons)
|
||||||
|
{
|
||||||
|
if (primaryIcons.TryGetValue("CFBundleIconFiles", out object iconFilesNode) && iconFilesNode is IList<object> iconFiles)
|
||||||
|
{
|
||||||
|
IconName = iconFiles.LastOrDefault() as string;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (!string.IsNullOrWhiteSpace(IconName))
|
||||||
|
{
|
||||||
|
if (InfoPlistDict.TryGetValue("CFBundleIconFiles", out object iconFilesNode) && iconFilesNode is IList<object> iconFiles)
|
||||||
|
{
|
||||||
|
IconName = iconFiles.LastOrDefault() as string;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (!string.IsNullOrWhiteSpace(IconName))
|
||||||
|
{
|
||||||
|
foreach (ZipEntry entry in zip)
|
||||||
|
{
|
||||||
|
if (entry.Name.StartsWith(appRoot))
|
||||||
|
{
|
||||||
|
string fileName = Path.GetFileName(entry.Name);
|
||||||
|
|
||||||
|
if (fileName.StartsWith(IconName))
|
||||||
|
{
|
||||||
|
using var s = new BinaryReader(zip.GetInputStream(entry));
|
||||||
|
Icon = s.ReadBytes((int)entry.Size);
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
@@ -0,0 +1,910 @@
|
|||||||
|
// Copyright © 2017-2025 QL-Win Contributors
|
||||||
|
//
|
||||||
|
// This file is part of QuickLook program.
|
||||||
|
//
|
||||||
|
// 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 3 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, see <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
|
using System;
|
||||||
|
using System.Collections;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Globalization;
|
||||||
|
using System.IO;
|
||||||
|
using System.Text;
|
||||||
|
using System.Xml;
|
||||||
|
|
||||||
|
namespace QuickLook.Plugin.AppViewer.IpaPackageParser;
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// https://github.com/animetrics/PlistCS
|
||||||
|
/// </summary>
|
||||||
|
public static class Plist
|
||||||
|
{
|
||||||
|
private static readonly List<int> offsetTable = [];
|
||||||
|
private static List<byte> objectTable = [];
|
||||||
|
private static int refCount;
|
||||||
|
private static int objRefSize;
|
||||||
|
private static int offsetByteSize;
|
||||||
|
private static long offsetTableOffset;
|
||||||
|
|
||||||
|
public static object ReadPlist(string path)
|
||||||
|
{
|
||||||
|
using var f = new FileStream(path, FileMode.Open, FileAccess.Read);
|
||||||
|
return ReadPlist(f, PlistType.Auto);
|
||||||
|
}
|
||||||
|
|
||||||
|
public static object ReadPlistSource(string source)
|
||||||
|
{
|
||||||
|
return ReadPlist(Encoding.UTF8.GetBytes(source));
|
||||||
|
}
|
||||||
|
|
||||||
|
public static object ReadPlist(byte[] data)
|
||||||
|
{
|
||||||
|
return ReadPlist(new MemoryStream(data), PlistType.Auto);
|
||||||
|
}
|
||||||
|
|
||||||
|
public static PlistType GetPlistType(Stream stream)
|
||||||
|
{
|
||||||
|
byte[] magicHeader = new byte[8];
|
||||||
|
stream.Read(magicHeader, 0, 8);
|
||||||
|
|
||||||
|
if (BitConverter.ToInt64(magicHeader, 0) == 3472403351741427810L)
|
||||||
|
{
|
||||||
|
return PlistType.Binary;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
return PlistType.Xml;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
public static object ReadPlist(Stream stream, PlistType type)
|
||||||
|
{
|
||||||
|
if (type == PlistType.Auto)
|
||||||
|
{
|
||||||
|
type = GetPlistType(stream);
|
||||||
|
stream.Seek(0, SeekOrigin.Begin);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (type == PlistType.Binary)
|
||||||
|
{
|
||||||
|
using var reader = new BinaryReader(stream);
|
||||||
|
byte[] data = reader.ReadBytes((int)reader.BaseStream.Length);
|
||||||
|
return ReadBinary(data);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
XmlDocument xml = new()
|
||||||
|
{
|
||||||
|
XmlResolver = null,
|
||||||
|
};
|
||||||
|
xml.Load(stream);
|
||||||
|
return ReadXml(xml);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
public static void WriteXml(object value, string path)
|
||||||
|
{
|
||||||
|
using var writer = new StreamWriter(path);
|
||||||
|
writer.Write(WriteXml(value));
|
||||||
|
}
|
||||||
|
|
||||||
|
public static void WriteXml(object value, Stream stream)
|
||||||
|
{
|
||||||
|
using var writer = new StreamWriter(stream);
|
||||||
|
writer.Write(WriteXml(value));
|
||||||
|
}
|
||||||
|
|
||||||
|
public static string WriteXml(object value)
|
||||||
|
{
|
||||||
|
using var ms = new MemoryStream();
|
||||||
|
XmlWriterSettings xmlWriterSettings = new()
|
||||||
|
{
|
||||||
|
Encoding = new UTF8Encoding(false),
|
||||||
|
ConformanceLevel = ConformanceLevel.Document,
|
||||||
|
Indent = true,
|
||||||
|
};
|
||||||
|
|
||||||
|
using var xmlWriter = XmlWriter.Create(ms, xmlWriterSettings);
|
||||||
|
xmlWriter.WriteStartDocument();
|
||||||
|
//xmlWriter.WriteComment("DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" " + "\"http://www.apple.com/DTDs/PropertyList-1.0.dtd\"");
|
||||||
|
xmlWriter.WriteDocType("plist", "-//Apple Computer//DTD PLIST 1.0//EN", "http://www.apple.com/DTDs/PropertyList-1.0.dtd", null);
|
||||||
|
xmlWriter.WriteStartElement("plist");
|
||||||
|
xmlWriter.WriteAttributeString("version", "1.0");
|
||||||
|
Compose(value, xmlWriter);
|
||||||
|
xmlWriter.WriteEndElement();
|
||||||
|
xmlWriter.WriteEndDocument();
|
||||||
|
xmlWriter.Flush();
|
||||||
|
xmlWriter.Close();
|
||||||
|
return Encoding.UTF8.GetString(ms.ToArray());
|
||||||
|
}
|
||||||
|
|
||||||
|
public static void WriteBinary(object value, string path)
|
||||||
|
{
|
||||||
|
using var writer = new BinaryWriter(new FileStream(path, FileMode.Create));
|
||||||
|
writer.Write(WriteBinary(value));
|
||||||
|
}
|
||||||
|
|
||||||
|
public static void WriteBinary(object value, Stream stream)
|
||||||
|
{
|
||||||
|
using var writer = new BinaryWriter(stream);
|
||||||
|
writer.Write(WriteBinary(value));
|
||||||
|
}
|
||||||
|
|
||||||
|
public static byte[] WriteBinary(object value)
|
||||||
|
{
|
||||||
|
offsetTable.Clear();
|
||||||
|
objectTable.Clear();
|
||||||
|
refCount = 0;
|
||||||
|
objRefSize = 0;
|
||||||
|
offsetByteSize = 0;
|
||||||
|
offsetTableOffset = 0;
|
||||||
|
|
||||||
|
//Do not count the root node, subtract by 1
|
||||||
|
int totalRefs = CountObject(value) - 1;
|
||||||
|
|
||||||
|
refCount = totalRefs;
|
||||||
|
|
||||||
|
objRefSize = RegulateNullBytes(BitConverter.GetBytes(refCount)).Length;
|
||||||
|
|
||||||
|
ComposeBinary(value);
|
||||||
|
|
||||||
|
WriteBinaryString("bplist00", false);
|
||||||
|
|
||||||
|
offsetTableOffset = (long)objectTable.Count;
|
||||||
|
|
||||||
|
offsetTable.Add(objectTable.Count - 8);
|
||||||
|
|
||||||
|
offsetByteSize = RegulateNullBytes(BitConverter.GetBytes(offsetTable[offsetTable.Count - 1])).Length;
|
||||||
|
|
||||||
|
List<byte> offsetBytes = [];
|
||||||
|
|
||||||
|
offsetTable.Reverse();
|
||||||
|
|
||||||
|
for (int i = 0; i < offsetTable.Count; i++)
|
||||||
|
{
|
||||||
|
offsetTable[i] = objectTable.Count - offsetTable[i];
|
||||||
|
byte[] buffer = RegulateNullBytes(BitConverter.GetBytes(offsetTable[i]), offsetByteSize);
|
||||||
|
Array.Reverse(buffer);
|
||||||
|
offsetBytes.AddRange(buffer);
|
||||||
|
}
|
||||||
|
|
||||||
|
objectTable.AddRange(offsetBytes);
|
||||||
|
|
||||||
|
objectTable.AddRange(new byte[6]);
|
||||||
|
objectTable.Add(Convert.ToByte(offsetByteSize));
|
||||||
|
objectTable.Add(Convert.ToByte(objRefSize));
|
||||||
|
|
||||||
|
var a = BitConverter.GetBytes((long)totalRefs + 1);
|
||||||
|
Array.Reverse(a);
|
||||||
|
objectTable.AddRange(a);
|
||||||
|
|
||||||
|
objectTable.AddRange(BitConverter.GetBytes((long)0));
|
||||||
|
a = BitConverter.GetBytes(offsetTableOffset);
|
||||||
|
Array.Reverse(a);
|
||||||
|
objectTable.AddRange(a);
|
||||||
|
|
||||||
|
return [.. objectTable];
|
||||||
|
}
|
||||||
|
|
||||||
|
private static object ReadXml(XmlDocument xml)
|
||||||
|
{
|
||||||
|
XmlNode rootNode = xml.DocumentElement.ChildNodes[0];
|
||||||
|
return Parse(rootNode);
|
||||||
|
}
|
||||||
|
|
||||||
|
private static object ReadBinary(byte[] data)
|
||||||
|
{
|
||||||
|
offsetTable.Clear();
|
||||||
|
objectTable.Clear();
|
||||||
|
refCount = 0;
|
||||||
|
objRefSize = 0;
|
||||||
|
offsetByteSize = 0;
|
||||||
|
offsetTableOffset = 0;
|
||||||
|
|
||||||
|
List<byte> bList = [.. data];
|
||||||
|
|
||||||
|
List<byte> trailer = bList.GetRange(bList.Count - 32, 32);
|
||||||
|
|
||||||
|
ParseTrailer(trailer);
|
||||||
|
|
||||||
|
objectTable = bList.GetRange(0, (int)offsetTableOffset);
|
||||||
|
|
||||||
|
List<byte> offsetTableBytes = bList.GetRange((int)offsetTableOffset, bList.Count - (int)offsetTableOffset - 32);
|
||||||
|
|
||||||
|
ParseOffsetTable(offsetTableBytes);
|
||||||
|
|
||||||
|
return ParseBinary(0);
|
||||||
|
}
|
||||||
|
|
||||||
|
private static Dictionary<string, object> ParseDictionary(XmlNode node)
|
||||||
|
{
|
||||||
|
XmlNodeList children = node.ChildNodes;
|
||||||
|
if (children.Count % 2 != 0)
|
||||||
|
{
|
||||||
|
throw new DataMisalignedException("Dictionary elements must have an even number of child nodes");
|
||||||
|
}
|
||||||
|
|
||||||
|
Dictionary<string, object> dict = [];
|
||||||
|
|
||||||
|
for (int i = 0; i < children.Count; i += 2)
|
||||||
|
{
|
||||||
|
XmlNode keynode = children[i];
|
||||||
|
XmlNode valnode = children[i + 1];
|
||||||
|
|
||||||
|
if (keynode.Name != "key")
|
||||||
|
{
|
||||||
|
throw new ApplicationException("expected a key node");
|
||||||
|
}
|
||||||
|
|
||||||
|
object result = Parse(valnode);
|
||||||
|
|
||||||
|
if (result != null)
|
||||||
|
{
|
||||||
|
dict.Add(keynode.InnerText, result);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
//dict.Add("$Proxy", node);
|
||||||
|
|
||||||
|
return dict;
|
||||||
|
}
|
||||||
|
|
||||||
|
private static List<object> ParseArray(XmlNode node)
|
||||||
|
{
|
||||||
|
List<object> array = [];
|
||||||
|
|
||||||
|
foreach (XmlNode child in node.ChildNodes)
|
||||||
|
{
|
||||||
|
object result = Parse(child);
|
||||||
|
if (result != null)
|
||||||
|
{
|
||||||
|
array.Add(result);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return array;
|
||||||
|
}
|
||||||
|
|
||||||
|
private static void ComposeArray(List<object> value, XmlWriter writer)
|
||||||
|
{
|
||||||
|
writer.WriteStartElement("array");
|
||||||
|
foreach (object obj in value)
|
||||||
|
{
|
||||||
|
Compose(obj, writer);
|
||||||
|
}
|
||||||
|
writer.WriteEndElement();
|
||||||
|
}
|
||||||
|
|
||||||
|
private static object Parse(XmlNode node)
|
||||||
|
{
|
||||||
|
return node.Name switch
|
||||||
|
{
|
||||||
|
"dict" => ParseDictionary(node),
|
||||||
|
"array" => ParseArray(node),
|
||||||
|
"string" => node.InnerText,
|
||||||
|
"integer" => Convert.ToInt32(node.InnerText, NumberFormatInfo.InvariantInfo), // int result;
|
||||||
|
// int.TryParse(node.InnerText, System.Globalization.NumberFormatInfo.InvariantInfo, out result);
|
||||||
|
"real" => Convert.ToDouble(node.InnerText, NumberFormatInfo.InvariantInfo),
|
||||||
|
"false" => false,
|
||||||
|
"true" => true,
|
||||||
|
"null" => null,
|
||||||
|
"date" => XmlConvert.ToDateTime(node.InnerText, XmlDateTimeSerializationMode.Utc),
|
||||||
|
"data" => Convert.FromBase64String(node.InnerText),
|
||||||
|
_ => throw new ApplicationException(string.Format("Plist Node `{0}' is not supported", node.Name)),
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
private static void Compose(object value, XmlWriter writer)
|
||||||
|
{
|
||||||
|
if (value == null || value is string)
|
||||||
|
{
|
||||||
|
writer.WriteElementString("string", value as string);
|
||||||
|
}
|
||||||
|
else if (value is int || value is long)
|
||||||
|
{
|
||||||
|
writer.WriteElementString("integer", ((int)value).ToString(System.Globalization.NumberFormatInfo.InvariantInfo));
|
||||||
|
}
|
||||||
|
else if (value is System.Collections.Generic.Dictionary<string, object> ||
|
||||||
|
value.GetType().ToString().StartsWith("System.Collections.Generic.Dictionary`2[System.String"))
|
||||||
|
{
|
||||||
|
// Convert to Dictionary<string, object>
|
||||||
|
if (value is not Dictionary<string, object> dic)
|
||||||
|
{
|
||||||
|
dic = [];
|
||||||
|
IDictionary idic = (IDictionary)value;
|
||||||
|
foreach (var key in idic.Keys)
|
||||||
|
{
|
||||||
|
dic.Add(key.ToString(), idic[key]);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
WriteDictionaryValues(dic, writer);
|
||||||
|
}
|
||||||
|
else if (value is List<object> list)
|
||||||
|
{
|
||||||
|
ComposeArray(list, writer);
|
||||||
|
}
|
||||||
|
else if (value is byte[] bytes)
|
||||||
|
{
|
||||||
|
writer.WriteElementString("data", Convert.ToBase64String(bytes));
|
||||||
|
}
|
||||||
|
else if (value is float || value is double)
|
||||||
|
{
|
||||||
|
writer.WriteElementString("real", ((double)value).ToString(System.Globalization.NumberFormatInfo.InvariantInfo));
|
||||||
|
}
|
||||||
|
else if (value is DateTime time)
|
||||||
|
{
|
||||||
|
string theString = XmlConvert.ToString(time, XmlDateTimeSerializationMode.Utc);
|
||||||
|
writer.WriteElementString("date", theString);//, "yyyy-MM-ddTHH:mm:ssZ"));
|
||||||
|
}
|
||||||
|
else if (value is bool)
|
||||||
|
{
|
||||||
|
writer.WriteElementString(value.ToString().ToLower(), "");
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
throw new Exception(string.Format("Value type '{0}' is unhandled", value.GetType().ToString()));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private static void WriteDictionaryValues(Dictionary<string, object> dictionary, XmlWriter writer)
|
||||||
|
{
|
||||||
|
writer.WriteStartElement("dict");
|
||||||
|
foreach (string key in dictionary.Keys)
|
||||||
|
{
|
||||||
|
object value = dictionary[key];
|
||||||
|
writer.WriteElementString("key", key);
|
||||||
|
Compose(value, writer);
|
||||||
|
}
|
||||||
|
writer.WriteEndElement();
|
||||||
|
}
|
||||||
|
|
||||||
|
private static int CountObject(object value)
|
||||||
|
{
|
||||||
|
int count = 0;
|
||||||
|
switch (value.GetType().ToString())
|
||||||
|
{
|
||||||
|
case "System.Collections.Generic.Dictionary`2[System.String,System.Object]":
|
||||||
|
Dictionary<string, object> dict = (Dictionary<string, object>)value;
|
||||||
|
foreach (string key in dict.Keys)
|
||||||
|
{
|
||||||
|
count += CountObject(dict[key]);
|
||||||
|
}
|
||||||
|
count += dict.Keys.Count;
|
||||||
|
count++;
|
||||||
|
break;
|
||||||
|
|
||||||
|
case "System.Collections.Generic.List`1[System.Object]":
|
||||||
|
List<object> list = (List<object>)value;
|
||||||
|
foreach (object obj in list)
|
||||||
|
{
|
||||||
|
count += CountObject(obj);
|
||||||
|
}
|
||||||
|
count++;
|
||||||
|
break;
|
||||||
|
|
||||||
|
default:
|
||||||
|
count++;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
return count;
|
||||||
|
}
|
||||||
|
|
||||||
|
private static byte[] WriteBinaryDictionary(Dictionary<string, object> dictionary)
|
||||||
|
{
|
||||||
|
List<byte> buffer = [];
|
||||||
|
List<byte> header = [];
|
||||||
|
List<int> refs = [];
|
||||||
|
for (int i = dictionary.Count - 1; i >= 0; i--)
|
||||||
|
{
|
||||||
|
var o = new object[dictionary.Count];
|
||||||
|
dictionary.Values.CopyTo(o, 0);
|
||||||
|
ComposeBinary(o[i]);
|
||||||
|
offsetTable.Add(objectTable.Count);
|
||||||
|
refs.Add(refCount);
|
||||||
|
refCount--;
|
||||||
|
}
|
||||||
|
for (int i = dictionary.Count - 1; i >= 0; i--)
|
||||||
|
{
|
||||||
|
var o = new string[dictionary.Count];
|
||||||
|
dictionary.Keys.CopyTo(o, 0);
|
||||||
|
ComposeBinary(o[i]);
|
||||||
|
offsetTable.Add(objectTable.Count);
|
||||||
|
refs.Add(refCount);
|
||||||
|
refCount--;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (dictionary.Count < 15)
|
||||||
|
{
|
||||||
|
header.Add(Convert.ToByte(0xD0 | Convert.ToByte(dictionary.Count)));
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
header.Add(0xD0 | 0xf);
|
||||||
|
header.AddRange(WriteBinaryInteger(dictionary.Count, false));
|
||||||
|
}
|
||||||
|
|
||||||
|
foreach (int val in refs)
|
||||||
|
{
|
||||||
|
byte[] refBuffer = RegulateNullBytes(BitConverter.GetBytes(val), objRefSize);
|
||||||
|
Array.Reverse(refBuffer);
|
||||||
|
buffer.InsertRange(0, refBuffer);
|
||||||
|
}
|
||||||
|
|
||||||
|
buffer.InsertRange(0, header);
|
||||||
|
|
||||||
|
objectTable.InsertRange(0, buffer);
|
||||||
|
|
||||||
|
return [.. buffer];
|
||||||
|
}
|
||||||
|
|
||||||
|
private static byte[] ComposeBinaryArray(List<object> objects)
|
||||||
|
{
|
||||||
|
List<byte> buffer = [];
|
||||||
|
List<byte> header = [];
|
||||||
|
List<int> refs = [];
|
||||||
|
|
||||||
|
for (int i = objects.Count - 1; i >= 0; i--)
|
||||||
|
{
|
||||||
|
ComposeBinary(objects[i]);
|
||||||
|
offsetTable.Add(objectTable.Count);
|
||||||
|
refs.Add(refCount);
|
||||||
|
refCount--;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (objects.Count < 15)
|
||||||
|
{
|
||||||
|
header.Add(Convert.ToByte(0xA0 | Convert.ToByte(objects.Count)));
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
header.Add(0xA0 | 0xf);
|
||||||
|
header.AddRange(WriteBinaryInteger(objects.Count, false));
|
||||||
|
}
|
||||||
|
|
||||||
|
foreach (int val in refs)
|
||||||
|
{
|
||||||
|
byte[] refBuffer = RegulateNullBytes(BitConverter.GetBytes(val), objRefSize);
|
||||||
|
Array.Reverse(refBuffer);
|
||||||
|
buffer.InsertRange(0, refBuffer);
|
||||||
|
}
|
||||||
|
|
||||||
|
buffer.InsertRange(0, header);
|
||||||
|
|
||||||
|
objectTable.InsertRange(0, buffer);
|
||||||
|
|
||||||
|
return [.. buffer];
|
||||||
|
}
|
||||||
|
|
||||||
|
private static byte[] ComposeBinary(object obj)
|
||||||
|
{
|
||||||
|
byte[] value;
|
||||||
|
switch (obj.GetType().ToString())
|
||||||
|
{
|
||||||
|
case "System.Collections.Generic.Dictionary`2[System.String,System.Object]":
|
||||||
|
value = WriteBinaryDictionary((Dictionary<string, object>)obj);
|
||||||
|
return value;
|
||||||
|
|
||||||
|
case "System.Collections.Generic.List`1[System.Object]":
|
||||||
|
value = ComposeBinaryArray((List<object>)obj);
|
||||||
|
return value;
|
||||||
|
|
||||||
|
case "System.Byte[]":
|
||||||
|
value = WriteBinaryByteArray((byte[])obj);
|
||||||
|
return value;
|
||||||
|
|
||||||
|
case "System.Double":
|
||||||
|
value = WriteBinaryDouble((double)obj);
|
||||||
|
return value;
|
||||||
|
|
||||||
|
case "System.Int32":
|
||||||
|
value = WriteBinaryInteger((int)obj, true);
|
||||||
|
return value;
|
||||||
|
|
||||||
|
case "System.String":
|
||||||
|
value = WriteBinaryString((string)obj, true);
|
||||||
|
return value;
|
||||||
|
|
||||||
|
case "System.DateTime":
|
||||||
|
value = WriteBinaryDate((DateTime)obj);
|
||||||
|
return value;
|
||||||
|
|
||||||
|
case "System.Boolean":
|
||||||
|
value = WriteBinaryBool((bool)obj);
|
||||||
|
return value;
|
||||||
|
|
||||||
|
default:
|
||||||
|
return [];
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
public static byte[] WriteBinaryDate(DateTime obj)
|
||||||
|
{
|
||||||
|
List<byte> buffer = [.. RegulateNullBytes(BitConverter.GetBytes(PlistDateConverter.ConvertToAppleTimeStamp(obj)), 8)];
|
||||||
|
buffer.Reverse();
|
||||||
|
buffer.Insert(0, 0x33);
|
||||||
|
objectTable.InsertRange(0, buffer);
|
||||||
|
return [.. buffer];
|
||||||
|
}
|
||||||
|
|
||||||
|
public static byte[] WriteBinaryBool(bool obj)
|
||||||
|
{
|
||||||
|
List<byte> buffer = [.. new byte[1] { obj ? (byte)9 : (byte)8 }];
|
||||||
|
objectTable.InsertRange(0, buffer);
|
||||||
|
return [.. buffer];
|
||||||
|
}
|
||||||
|
|
||||||
|
private static byte[] WriteBinaryInteger(int value, bool write)
|
||||||
|
{
|
||||||
|
List<byte> buffer = [.. BitConverter.GetBytes((long)value)];
|
||||||
|
buffer = [.. RegulateNullBytes([.. buffer])];
|
||||||
|
while (buffer.Count != Math.Pow(2, Math.Log(buffer.Count) / Math.Log(2)))
|
||||||
|
buffer.Add(0);
|
||||||
|
int header = 0x10 | (int)(Math.Log(buffer.Count) / Math.Log(2));
|
||||||
|
|
||||||
|
buffer.Reverse();
|
||||||
|
|
||||||
|
buffer.Insert(0, Convert.ToByte(header));
|
||||||
|
|
||||||
|
if (write)
|
||||||
|
objectTable.InsertRange(0, buffer);
|
||||||
|
|
||||||
|
return [.. buffer];
|
||||||
|
}
|
||||||
|
|
||||||
|
private static byte[] WriteBinaryDouble(double value)
|
||||||
|
{
|
||||||
|
List<byte> buffer = [.. RegulateNullBytes(BitConverter.GetBytes(value), 4)];
|
||||||
|
while (buffer.Count != Math.Pow(2, Math.Log(buffer.Count) / Math.Log(2)))
|
||||||
|
buffer.Add(0);
|
||||||
|
int header = 0x20 | (int)(Math.Log(buffer.Count) / Math.Log(2));
|
||||||
|
|
||||||
|
buffer.Reverse();
|
||||||
|
|
||||||
|
buffer.Insert(0, Convert.ToByte(header));
|
||||||
|
|
||||||
|
objectTable.InsertRange(0, buffer);
|
||||||
|
|
||||||
|
return [.. buffer];
|
||||||
|
}
|
||||||
|
|
||||||
|
private static byte[] WriteBinaryByteArray(byte[] value)
|
||||||
|
{
|
||||||
|
List<byte> buffer = [.. value];
|
||||||
|
List<byte> header = [];
|
||||||
|
if (value.Length < 15)
|
||||||
|
{
|
||||||
|
header.Add(Convert.ToByte(0x40 | Convert.ToByte(value.Length)));
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
header.Add(0x40 | 0xf);
|
||||||
|
header.AddRange(WriteBinaryInteger(buffer.Count, false));
|
||||||
|
}
|
||||||
|
|
||||||
|
buffer.InsertRange(0, header);
|
||||||
|
|
||||||
|
objectTable.InsertRange(0, buffer);
|
||||||
|
|
||||||
|
return [.. buffer];
|
||||||
|
}
|
||||||
|
|
||||||
|
private static byte[] WriteBinaryString(string value, bool head)
|
||||||
|
{
|
||||||
|
List<byte> buffer = [];
|
||||||
|
List<byte> header = [];
|
||||||
|
foreach (char chr in value.ToCharArray())
|
||||||
|
buffer.Add(Convert.ToByte(chr));
|
||||||
|
|
||||||
|
if (head)
|
||||||
|
{
|
||||||
|
if (value.Length < 15)
|
||||||
|
{
|
||||||
|
header.Add(Convert.ToByte(0x50 | Convert.ToByte(value.Length)));
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
header.Add(0x50 | 0xf);
|
||||||
|
header.AddRange(WriteBinaryInteger(buffer.Count, false));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
buffer.InsertRange(0, header);
|
||||||
|
|
||||||
|
objectTable.InsertRange(0, buffer);
|
||||||
|
|
||||||
|
return [.. buffer];
|
||||||
|
}
|
||||||
|
|
||||||
|
private static byte[] RegulateNullBytes(byte[] value)
|
||||||
|
{
|
||||||
|
return RegulateNullBytes(value, 1);
|
||||||
|
}
|
||||||
|
|
||||||
|
private static byte[] RegulateNullBytes(byte[] value, int minBytes)
|
||||||
|
{
|
||||||
|
Array.Reverse(value);
|
||||||
|
List<byte> bytes = [.. value];
|
||||||
|
for (int i = 0; i < bytes.Count; i++)
|
||||||
|
{
|
||||||
|
if (bytes[i] == 0 && bytes.Count > minBytes)
|
||||||
|
{
|
||||||
|
bytes.Remove(bytes[i]);
|
||||||
|
i--;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (bytes.Count < minBytes)
|
||||||
|
{
|
||||||
|
int dist = minBytes - bytes.Count;
|
||||||
|
for (int i = 0; i < dist; i++)
|
||||||
|
bytes.Insert(0, 0);
|
||||||
|
}
|
||||||
|
|
||||||
|
value = [.. bytes];
|
||||||
|
Array.Reverse(value);
|
||||||
|
return value;
|
||||||
|
}
|
||||||
|
|
||||||
|
private static void ParseTrailer(List<byte> trailer)
|
||||||
|
{
|
||||||
|
offsetByteSize = BitConverter.ToInt32(RegulateNullBytes([.. trailer.GetRange(6, 1)], 4), 0);
|
||||||
|
objRefSize = BitConverter.ToInt32(RegulateNullBytes([.. trailer.GetRange(7, 1)], 4), 0);
|
||||||
|
byte[] refCountBytes = [.. trailer.GetRange(12, 4)];
|
||||||
|
Array.Reverse(refCountBytes);
|
||||||
|
refCount = BitConverter.ToInt32(refCountBytes, 0);
|
||||||
|
byte[] offsetTableOffsetBytes = [.. trailer.GetRange(24, 8)];
|
||||||
|
Array.Reverse(offsetTableOffsetBytes);
|
||||||
|
offsetTableOffset = BitConverter.ToInt64(offsetTableOffsetBytes, 0);
|
||||||
|
}
|
||||||
|
|
||||||
|
private static void ParseOffsetTable(List<byte> offsetTableBytes)
|
||||||
|
{
|
||||||
|
for (int i = 0; i < offsetTableBytes.Count; i += offsetByteSize)
|
||||||
|
{
|
||||||
|
byte[] buffer = [.. offsetTableBytes.GetRange(i, offsetByteSize)];
|
||||||
|
Array.Reverse(buffer);
|
||||||
|
offsetTable.Add(BitConverter.ToInt32(RegulateNullBytes(buffer, 4), 0));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private static object ParseBinaryDictionary(int objRef)
|
||||||
|
{
|
||||||
|
Dictionary<string, object> buffer = [];
|
||||||
|
List<int> refs = [];
|
||||||
|
int refCount = GetCount(offsetTable[objRef], out _);
|
||||||
|
int refStartPosition;
|
||||||
|
if (refCount < 15)
|
||||||
|
refStartPosition = offsetTable[objRef] + 1;
|
||||||
|
else
|
||||||
|
refStartPosition = offsetTable[objRef] + 2 + RegulateNullBytes(BitConverter.GetBytes(refCount), 1).Length;
|
||||||
|
|
||||||
|
for (int i = refStartPosition; i < refStartPosition + refCount * 2 * objRefSize; i += objRefSize)
|
||||||
|
{
|
||||||
|
byte[] refBuffer = [.. objectTable.GetRange(i, objRefSize)];
|
||||||
|
Array.Reverse(refBuffer);
|
||||||
|
refs.Add(BitConverter.ToInt32(RegulateNullBytes(refBuffer, 4), 0));
|
||||||
|
}
|
||||||
|
|
||||||
|
for (int i = 0; i < refCount; i++)
|
||||||
|
{
|
||||||
|
buffer.Add((string)ParseBinary(refs[i]), ParseBinary(refs[i + refCount]));
|
||||||
|
}
|
||||||
|
|
||||||
|
return buffer;
|
||||||
|
}
|
||||||
|
|
||||||
|
private static object ParseBinaryArray(int objRef)
|
||||||
|
{
|
||||||
|
List<object> buffer = [];
|
||||||
|
List<int> refs = [];
|
||||||
|
int refCount = GetCount(offsetTable[objRef], out _);
|
||||||
|
int refStartPosition;
|
||||||
|
if (refCount < 15)
|
||||||
|
refStartPosition = offsetTable[objRef] + 1;
|
||||||
|
else
|
||||||
|
// The following integer has a header aswell so we increase the refStartPosition by two to account for that.
|
||||||
|
refStartPosition = offsetTable[objRef] + 2 + RegulateNullBytes(BitConverter.GetBytes(refCount), 1).Length;
|
||||||
|
|
||||||
|
for (int i = refStartPosition; i < refStartPosition + refCount * objRefSize; i += objRefSize)
|
||||||
|
{
|
||||||
|
byte[] refBuffer = [.. objectTable.GetRange(i, objRefSize)];
|
||||||
|
Array.Reverse(refBuffer);
|
||||||
|
refs.Add(BitConverter.ToInt32(RegulateNullBytes(refBuffer, 4), 0));
|
||||||
|
}
|
||||||
|
|
||||||
|
for (int i = 0; i < refCount; i++)
|
||||||
|
{
|
||||||
|
buffer.Add(ParseBinary(refs[i]));
|
||||||
|
}
|
||||||
|
|
||||||
|
return buffer;
|
||||||
|
}
|
||||||
|
|
||||||
|
private static int GetCount(int bytePosition, out int newBytePosition)
|
||||||
|
{
|
||||||
|
byte headerByte = objectTable[bytePosition];
|
||||||
|
byte headerByteTrail = Convert.ToByte(headerByte & 0xf);
|
||||||
|
int count;
|
||||||
|
if (headerByteTrail < 15)
|
||||||
|
{
|
||||||
|
count = headerByteTrail;
|
||||||
|
newBytePosition = bytePosition + 1;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
count = (int)ParseBinaryInt(bytePosition + 1, out newBytePosition);
|
||||||
|
return count;
|
||||||
|
}
|
||||||
|
|
||||||
|
private static object ParseBinary(int objRef)
|
||||||
|
{
|
||||||
|
byte header = objectTable[offsetTable[objRef]];
|
||||||
|
switch (header & 0xF0)
|
||||||
|
{
|
||||||
|
case 0:
|
||||||
|
{
|
||||||
|
// If the byte is
|
||||||
|
// 0 return null
|
||||||
|
// 9 return true
|
||||||
|
// 8 return false
|
||||||
|
return (objectTable[offsetTable[objRef]] == 0) ? null : (objectTable[offsetTable[objRef]] == 9);
|
||||||
|
}
|
||||||
|
case 0x10:
|
||||||
|
{
|
||||||
|
return ParseBinaryInt(offsetTable[objRef]);
|
||||||
|
}
|
||||||
|
case 0x20:
|
||||||
|
{
|
||||||
|
return ParseBinaryReal(offsetTable[objRef]);
|
||||||
|
}
|
||||||
|
case 0x30:
|
||||||
|
{
|
||||||
|
return ParseBinaryDate(offsetTable[objRef]);
|
||||||
|
}
|
||||||
|
case 0x40:
|
||||||
|
{
|
||||||
|
return ParseBinaryByteArray(offsetTable[objRef]);
|
||||||
|
}
|
||||||
|
case 0x50: // String ASCII
|
||||||
|
{
|
||||||
|
return ParseBinaryAsciiString(offsetTable[objRef]);
|
||||||
|
}
|
||||||
|
case 0x60: // String Unicode
|
||||||
|
{
|
||||||
|
return ParseBinaryUnicodeString(offsetTable[objRef]);
|
||||||
|
}
|
||||||
|
case 0xD0:
|
||||||
|
{
|
||||||
|
return ParseBinaryDictionary(objRef);
|
||||||
|
}
|
||||||
|
case 0xA0:
|
||||||
|
{
|
||||||
|
return ParseBinaryArray(objRef);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
throw new Exception("This type is not supported");
|
||||||
|
}
|
||||||
|
|
||||||
|
public static object ParseBinaryDate(int headerPosition)
|
||||||
|
{
|
||||||
|
byte[] buffer = [.. objectTable.GetRange(headerPosition + 1, 8)];
|
||||||
|
Array.Reverse(buffer);
|
||||||
|
double appleTime = BitConverter.ToDouble(buffer, 0);
|
||||||
|
DateTime result = PlistDateConverter.ConvertFromAppleTimeStamp(appleTime);
|
||||||
|
return result;
|
||||||
|
}
|
||||||
|
|
||||||
|
private static object ParseBinaryInt(int headerPosition)
|
||||||
|
{
|
||||||
|
return ParseBinaryInt(headerPosition, out _);
|
||||||
|
}
|
||||||
|
|
||||||
|
private static object ParseBinaryInt(int headerPosition, out int newHeaderPosition)
|
||||||
|
{
|
||||||
|
byte header = objectTable[headerPosition];
|
||||||
|
int byteCount = (int)Math.Pow(2, header & 0xf);
|
||||||
|
byte[] buffer = [.. objectTable.GetRange(headerPosition + 1, byteCount)];
|
||||||
|
Array.Reverse(buffer);
|
||||||
|
// Add one to account for the header byte
|
||||||
|
newHeaderPosition = headerPosition + byteCount + 1;
|
||||||
|
return BitConverter.ToInt32(RegulateNullBytes(buffer, 4), 0);
|
||||||
|
}
|
||||||
|
|
||||||
|
private static object ParseBinaryReal(int headerPosition)
|
||||||
|
{
|
||||||
|
byte header = objectTable[headerPosition];
|
||||||
|
int byteCount = (int)Math.Pow(2, header & 0xf);
|
||||||
|
byte[] buffer = [.. objectTable.GetRange(headerPosition + 1, byteCount)];
|
||||||
|
Array.Reverse(buffer);
|
||||||
|
|
||||||
|
return BitConverter.ToDouble(RegulateNullBytes(buffer, 8), 0);
|
||||||
|
}
|
||||||
|
|
||||||
|
private static object ParseBinaryAsciiString(int headerPosition)
|
||||||
|
{
|
||||||
|
int charCount = GetCount(headerPosition, out int charStartPosition);
|
||||||
|
var buffer = objectTable.GetRange(charStartPosition, charCount);
|
||||||
|
return buffer.Count > 0 ? Encoding.ASCII.GetString([.. buffer]) : string.Empty;
|
||||||
|
}
|
||||||
|
|
||||||
|
private static object ParseBinaryUnicodeString(int headerPosition)
|
||||||
|
{
|
||||||
|
int charCount = GetCount(headerPosition, out int charStartPosition);
|
||||||
|
charCount *= 2;
|
||||||
|
|
||||||
|
byte[] buffer = new byte[charCount];
|
||||||
|
byte one, two;
|
||||||
|
|
||||||
|
for (int i = 0; i < charCount; i += 2)
|
||||||
|
{
|
||||||
|
one = objectTable.GetRange(charStartPosition + i, 1)[0];
|
||||||
|
two = objectTable.GetRange(charStartPosition + i + 1, 1)[0];
|
||||||
|
|
||||||
|
if (BitConverter.IsLittleEndian)
|
||||||
|
{
|
||||||
|
buffer[i] = two;
|
||||||
|
buffer[i + 1] = one;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
buffer[i] = one;
|
||||||
|
buffer[i + 1] = two;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return Encoding.Unicode.GetString(buffer);
|
||||||
|
}
|
||||||
|
|
||||||
|
private static object ParseBinaryByteArray(int headerPosition)
|
||||||
|
{
|
||||||
|
int byteCount = GetCount(headerPosition, out int byteStartPosition);
|
||||||
|
return objectTable.GetRange(byteStartPosition, byteCount).ToArray();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
public enum PlistType
|
||||||
|
{
|
||||||
|
Auto,
|
||||||
|
Binary,
|
||||||
|
Xml,
|
||||||
|
}
|
||||||
|
|
||||||
|
public static class PlistDateConverter
|
||||||
|
{
|
||||||
|
public const long timeDifference = 978307200L;
|
||||||
|
|
||||||
|
public static long GetAppleTime(long unixTime)
|
||||||
|
{
|
||||||
|
return unixTime - timeDifference;
|
||||||
|
}
|
||||||
|
|
||||||
|
public static long GetUnixTime(long appleTime)
|
||||||
|
{
|
||||||
|
return appleTime + timeDifference;
|
||||||
|
}
|
||||||
|
|
||||||
|
public static DateTime ConvertFromAppleTimeStamp(double timestamp)
|
||||||
|
{
|
||||||
|
DateTime origin = new(2001, 1, 1, 0, 0, 0, 0);
|
||||||
|
return origin.AddSeconds(timestamp);
|
||||||
|
}
|
||||||
|
|
||||||
|
public static double ConvertToAppleTimeStamp(DateTime date)
|
||||||
|
{
|
||||||
|
DateTime begin = new(2001, 1, 1, 0, 0, 0, 0);
|
||||||
|
TimeSpan diff = date - begin;
|
||||||
|
return Math.Floor(diff.TotalSeconds);
|
||||||
|
}
|
||||||
|
}
|
@@ -41,7 +41,7 @@ public class Plugin : IViewer
|
|||||||
//".dmg", // macOS DMG
|
//".dmg", // macOS DMG
|
||||||
|
|
||||||
// iOS
|
// iOS
|
||||||
//".ipa", // iOS IPA
|
".ipa", // iOS IPA
|
||||||
|
|
||||||
// HarmonyOS
|
// HarmonyOS
|
||||||
//".hap", // HarmonyOS Package
|
//".hap", // HarmonyOS Package
|
||||||
@@ -70,6 +70,7 @@ public class Plugin : IViewer
|
|||||||
context.PreferredSize = Path.GetExtension(ConfirmPath(path)).ToLower() switch
|
context.PreferredSize = Path.GetExtension(ConfirmPath(path)).ToLower() switch
|
||||||
{
|
{
|
||||||
".apk" => new Size { Width = 560, Height = 500 },
|
".apk" => new Size { Width = 560, Height = 500 },
|
||||||
|
".ipa" => new Size { Width = 560, Height = 500 },
|
||||||
".msi" => new Size { Width = 520, Height = 230 },
|
".msi" => new Size { Width = 520, Height = 230 },
|
||||||
".msix" or ".msixbundle" or ".appx" or ".appxbundle" => new Size { Width = 560, Height = 328 },
|
".msix" or ".msixbundle" or ".appx" or ".appxbundle" => new Size { Width = 560, Height = 328 },
|
||||||
".wgt" or ".wgtu" => new Size { Width = 600, Height = 328 },
|
".wgt" or ".wgtu" => new Size { Width = 600, Height = 328 },
|
||||||
@@ -83,6 +84,7 @@ public class Plugin : IViewer
|
|||||||
_ip = Path.GetExtension(ConfirmPath(path)).ToLower() switch
|
_ip = Path.GetExtension(ConfirmPath(path)).ToLower() switch
|
||||||
{
|
{
|
||||||
".apk" => new ApkInfoPanel(context),
|
".apk" => new ApkInfoPanel(context),
|
||||||
|
".ipa" => new IpaInfoPanel(context),
|
||||||
".msi" => new MsiInfoPanel(context),
|
".msi" => new MsiInfoPanel(context),
|
||||||
".msix" or ".msixbundle" or ".appx" or ".appxbundle" => new AppxInfoPanel(context),
|
".msix" or ".msixbundle" or ".appx" or ".appxbundle" => new AppxInfoPanel(context),
|
||||||
".wgt" or ".wgtu" => new WgtInfoPanel(context),
|
".wgt" or ".wgtu" => new WgtInfoPanel(context),
|
||||||
|
@@ -84,9 +84,4 @@
|
|||||||
</None>
|
</None>
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
|
||||||
<Folder Include="Resources\" />
|
|
||||||
<Folder Include="WgtPackageParser\" />
|
|
||||||
</ItemGroup>
|
|
||||||
|
|
||||||
</Project>
|
</Project>
|
||||||
|
@@ -14,8 +14,11 @@
|
|||||||
<APP_VERSION_CODE>Version Code</APP_VERSION_CODE>
|
<APP_VERSION_CODE>Version Code</APP_VERSION_CODE>
|
||||||
<PERMISSIONS>Permissions</PERMISSIONS>
|
<PERMISSIONS>Permissions</PERMISSIONS>
|
||||||
<PACKAGE_NAME>Package Name</PACKAGE_NAME>
|
<PACKAGE_NAME>Package Name</PACKAGE_NAME>
|
||||||
<APP_MIN_SDK_VERSION>Min SDK Version</APP_MIN_SDK_VERSION>
|
<APP_MIN_SDK_VERSION>Minimum SDK Version</APP_MIN_SDK_VERSION>
|
||||||
<APP_TARGET_SDK_VERSION>Target SDK Version</APP_TARGET_SDK_VERSION>
|
<APP_TARGET_SDK_VERSION>Target SDK Version</APP_TARGET_SDK_VERSION>
|
||||||
|
<APP_MIN_OS_VERSION>Minimum OS Version</APP_MIN_OS_VERSION>
|
||||||
|
<APP_TARGET_OS_VERSION>Target OS Version</APP_TARGET_OS_VERSION>
|
||||||
|
<DEVICE_FAMILY>Device Family</DEVICE_FAMILY>
|
||||||
</en>
|
</en>
|
||||||
<pt-BR>
|
<pt-BR>
|
||||||
<PRODUCT_VERSION>Versão do produto</PRODUCT_VERSION>
|
<PRODUCT_VERSION>Versão do produto</PRODUCT_VERSION>
|
||||||
@@ -32,6 +35,9 @@
|
|||||||
<PACKAGE_NAME>Nome do pacote</PACKAGE_NAME>
|
<PACKAGE_NAME>Nome do pacote</PACKAGE_NAME>
|
||||||
<APP_MIN_SDK_VERSION>Versão mínima do SDK</APP_MIN_SDK_VERSION>
|
<APP_MIN_SDK_VERSION>Versão mínima do SDK</APP_MIN_SDK_VERSION>
|
||||||
<APP_TARGET_SDK_VERSION>Versão alvo do SDK</APP_TARGET_SDK_VERSION>
|
<APP_TARGET_SDK_VERSION>Versão alvo do SDK</APP_TARGET_SDK_VERSION>
|
||||||
|
<APP_MIN_OS_VERSION>Versão mínima do sistema operacional</APP_MIN_OS_VERSION>
|
||||||
|
<APP_TARGET_OS_VERSION>Versão alvo do sistema operacional</APP_TARGET_OS_VERSION>
|
||||||
|
<DEVICE_FAMILY>Família de dispositivos</DEVICE_FAMILY>
|
||||||
</pt-BR>
|
</pt-BR>
|
||||||
<zh-CN>
|
<zh-CN>
|
||||||
<PRODUCT_VERSION>产品版本</PRODUCT_VERSION>
|
<PRODUCT_VERSION>产品版本</PRODUCT_VERSION>
|
||||||
@@ -48,6 +54,9 @@
|
|||||||
<PACKAGE_NAME>包名</PACKAGE_NAME>
|
<PACKAGE_NAME>包名</PACKAGE_NAME>
|
||||||
<APP_MIN_SDK_VERSION>最低支持 SDK 版本</APP_MIN_SDK_VERSION>
|
<APP_MIN_SDK_VERSION>最低支持 SDK 版本</APP_MIN_SDK_VERSION>
|
||||||
<APP_TARGET_SDK_VERSION>目标 SDK 版本</APP_TARGET_SDK_VERSION>
|
<APP_TARGET_SDK_VERSION>目标 SDK 版本</APP_TARGET_SDK_VERSION>
|
||||||
|
<APP_MIN_OS_VERSION>最低系统版本</APP_MIN_OS_VERSION>
|
||||||
|
<APP_TARGET_OS_VERSION>目标系统版本</APP_TARGET_OS_VERSION>
|
||||||
|
<DEVICE_FAMILY>设备支持</DEVICE_FAMILY>
|
||||||
</zh-CN>
|
</zh-CN>
|
||||||
<zh-TW>
|
<zh-TW>
|
||||||
<PRODUCT_VERSION>產品版本</PRODUCT_VERSION>
|
<PRODUCT_VERSION>產品版本</PRODUCT_VERSION>
|
||||||
@@ -64,6 +73,9 @@
|
|||||||
<PACKAGE_NAME>套件名稱</PACKAGE_NAME>
|
<PACKAGE_NAME>套件名稱</PACKAGE_NAME>
|
||||||
<APP_MIN_SDK_VERSION>最低支援 SDK 版本</APP_MIN_SDK_VERSION>
|
<APP_MIN_SDK_VERSION>最低支援 SDK 版本</APP_MIN_SDK_VERSION>
|
||||||
<APP_TARGET_SDK_VERSION>目標 SDK 版本</APP_TARGET_SDK_VERSION>
|
<APP_TARGET_SDK_VERSION>目標 SDK 版本</APP_TARGET_SDK_VERSION>
|
||||||
|
<APP_MIN_OS_VERSION>最低作業系統版本</APP_MIN_OS_VERSION>
|
||||||
|
<APP_TARGET_OS_VERSION>目標作業系統版本</APP_TARGET_OS_VERSION>
|
||||||
|
<DEVICE_FAMILY>裝置支援</DEVICE_FAMILY>
|
||||||
</zh-TW>
|
</zh-TW>
|
||||||
<ja>
|
<ja>
|
||||||
<PRODUCT_VERSION>製品バージョン</PRODUCT_VERSION>
|
<PRODUCT_VERSION>製品バージョン</PRODUCT_VERSION>
|
||||||
@@ -80,5 +92,8 @@
|
|||||||
<PACKAGE_NAME>パッケージ名</PACKAGE_NAME>
|
<PACKAGE_NAME>パッケージ名</PACKAGE_NAME>
|
||||||
<APP_MIN_SDK_VERSION>最小SDKバージョン</APP_MIN_SDK_VERSION>
|
<APP_MIN_SDK_VERSION>最小SDKバージョン</APP_MIN_SDK_VERSION>
|
||||||
<APP_TARGET_SDK_VERSION>ターゲットSDKバージョン</APP_TARGET_SDK_VERSION>
|
<APP_TARGET_SDK_VERSION>ターゲットSDKバージョン</APP_TARGET_SDK_VERSION>
|
||||||
|
<APP_MIN_OS_VERSION>最小OSバージョン</APP_MIN_OS_VERSION>
|
||||||
|
<APP_TARGET_OS_VERSION>ターゲットOSバージョン</APP_TARGET_OS_VERSION>
|
||||||
|
<DEVICE_FAMILY>対応デバイス</DEVICE_FAMILY>
|
||||||
</ja>
|
</ja>
|
||||||
</Translations>
|
</Translations>
|
||||||
|
Reference in New Issue
Block a user