Files
MPF/DICUI.Check/Program.cs

251 lines
8.6 KiB
C#
Raw Normal View History

using System;
using System.IO;
using DICUI.Data;
using DICUI.Utilities;
using DICUI.Web;
namespace DICUI.Check
{
public class Program
{
public static void Main(string[] args)
{
2019-04-04 00:37:17 -07:00
// Help options
2020-05-07 14:23:49 -07:00
if (args.Length == 0 || args[0] == "-h" || args[0] == "-?")
{
2019-04-04 00:37:17 -07:00
DisplayHelp();
return;
}
// List options
2020-05-07 14:23:49 -07:00
if (args[0] == "-lm" || args[0] == "--listmedia")
2019-04-04 00:37:17 -07:00
{
ListMediaTypes();
Console.ReadLine();
return;
}
2020-05-07 14:23:49 -07:00
else if (args[0] == "-lp" || args[0] == "--listprograms")
{
ListPrograms();
Console.ReadLine();
return;
}
2020-05-07 14:23:49 -07:00
else if (args[0] == "-ls" || args[0] == "--listsystems")
2019-04-04 00:37:17 -07:00
{
ListKnownSystems();
Console.ReadLine();
return;
}
2019-04-04 00:37:17 -07:00
// Normal operation check
if (args.Length < 3)
{
DisplayHelp("Invalid number of arguments");
return;
}
2019-04-04 00:37:17 -07:00
// Check the MediaType
var mediaType = Converters.ToMediaType(args[0].Trim('"'));
2019-04-04 00:37:17 -07:00
if (mediaType == MediaType.NONE)
{
DisplayHelp($"{args[0]} is not a recognized media type");
return;
}
2019-04-04 00:37:17 -07:00
// Check the KnownSystem
var knownSystem = Converters.ToKnownSystem(args[1].Trim('"'));
2019-04-04 00:37:17 -07:00
if (knownSystem == KnownSystem.NONE)
{
DisplayHelp($"{args[1]} is not a recognized system");
return;
}
2020-02-06 23:54:49 -08:00
// Check for additional flags
string username = null, password = null;
string internalProgram = "DiscImageCreator";
int startIndex = 2;
2020-02-06 23:54:49 -08:00
for (; startIndex < args.Length; startIndex++)
{
2020-02-06 23:54:49 -08:00
// Redump login
2020-05-07 14:23:49 -07:00
if (args[startIndex].StartsWith("-c=") || args[startIndex].StartsWith("--credentials="))
{
string[] credentials = args[startIndex].Split('=')[1].Split(';');
username = credentials[0];
password = credentials[1];
}
else if (args[startIndex] == "-c" || args[startIndex] == "--credentials")
2020-02-06 23:54:49 -08:00
{
username = args[startIndex + 1];
password = args[startIndex + 2];
startIndex += 2;
}
// Use specific program
else if (args[startIndex].StartsWith("-u=") || args[startIndex].StartsWith("--use="))
2020-02-06 23:54:49 -08:00
{
internalProgram = args[startIndex].Split('=')[1];
2020-02-06 23:54:49 -08:00
}
2020-05-07 14:23:49 -07:00
else if (args[startIndex] == "-u" || args[startIndex] == "--use")
{
internalProgram = args[startIndex + 1];
startIndex++;
}
2020-02-06 23:54:49 -08:00
// Default, we fall out
else
{
break;
}
}
// Make a new Progress object
var progress = new Progress<Result>();
progress.ProgressChanged += ProgressUpdated;
// If credentials are invalid, alert the user
if (!string.IsNullOrWhiteSpace(username) && !string.IsNullOrWhiteSpace(password))
{
using (CookieAwareWebClient wc = new CookieAwareWebClient())
{
RedumpAccess access = new RedumpAccess();
if (access.RedumpLogin(wc, username, password))
Console.WriteLine("Redump username and password accepted!");
else
Console.WriteLine("Redump username and password denied!");
}
}
// Loop through all the rest of the args
for (int i = startIndex; i < args.Length; i++)
{
// Check for a file
2020-06-16 13:25:45 -07:00
if (!File.Exists(args[i].Trim('"')))
{
2020-06-16 13:25:45 -07:00
DisplayHelp($"{args[i].Trim('"')} does not exist");
return;
}
// Get the full file path
2020-06-16 13:25:45 -07:00
string filepath = Path.GetFullPath(args[i].Trim('"'));
// Now populate an environment
2020-05-06 15:44:46 -07:00
// TODO: Replace this with Dictionary constructor
var options = new Options
{
InternalProgram = internalProgram,
ScanForProtection = false,
PromptForDiscInformation = false,
Username = username,
Password = password,
};
var env = new DumpEnvironment(options, "", filepath, null, knownSystem, mediaType, null);
env.FixOutputPaths();
// Finally, attempt to do the output dance
2020-06-16 15:25:55 -07:00
var result = env.VerifyAndSaveDumpOutput(progress).ConfigureAwait(false).GetAwaiter().GetResult();
Console.WriteLine(result.Message);
}
}
2019-04-04 00:37:17 -07:00
/// <summary>
/// Display help for DICUI.Check
/// </summary>
/// <param name="error">Error string to prefix the help text with</param>
private static void DisplayHelp(string error = null)
{
if (error != null)
Console.WriteLine(error);
Console.WriteLine("Usage:");
2020-02-06 23:54:49 -08:00
Console.WriteLine("DICUI.Check.exe <mediatype> <system> [options] </path/to/output.bin> ...");
Console.WriteLine();
2020-05-07 14:23:49 -07:00
Console.WriteLine(@"Common Media Types:
2019-04-04 00:37:17 -07:00
bd / bluray - BD-ROM
cd / cdrom - CD-ROM
dvd - DVD-ROM
fd / floppy - Floppy Disk
2019-04-04 00:37:17 -07:00
gd / gdrom - GD-ROM
umd - UMD");
Console.WriteLine("Run 'DICUI.Check.exe [-lm|--listmedia' for more options");
Console.WriteLine();
2020-05-07 14:23:49 -07:00
Console.WriteLine(@"Common Systems:
2019-04-04 00:37:17 -07:00
apple / mac - Apple Macintosh
cdi - Philips CD-i
ibm / ibmpc - IBM PC Compatible
psx / ps1 - Sony PlayStation
ps2 - Sony PlayStation 2
psp - Sony PlayStation Portable
saturn - Sega Saturn
xbox - Microsoft XBOX
x360 - Microsoft XBOX 360");
Console.WriteLine("Run 'DICUI.Check.exe [-ls|--listsystems' for more options");
2020-02-06 23:54:49 -08:00
Console.WriteLine();
2020-05-07 14:23:49 -07:00
Console.WriteLine(@"Common Options:
2020-02-06 23:54:49 -08:00
-c username password - Redump credentials
-u - Set dumping program");
2020-05-07 14:23:49 -07:00
Console.WriteLine();
Console.WriteLine(@"Common Dumping Programs:
2020-06-25 11:17:26 -07:00
aaru / chef - Aaru
2020-05-07 14:23:49 -07:00
cr / cleanrip - CleanRip
dic - DiscImageCreator");
Console.WriteLine("Run 'DICUI.Check.exe [-lp|--listprograms' for more options");
Console.WriteLine();
}
2019-04-04 00:37:17 -07:00
/// <summary>
/// List all media types with their short usable names
/// </summary>
private static void ListMediaTypes()
{
2019-04-04 00:37:17 -07:00
Console.WriteLine("Supported Media Types:");
foreach (var val in Enum.GetValues(typeof(MediaType)))
{
2019-04-04 00:37:17 -07:00
if (((MediaType)val) == MediaType.NONE)
continue;
2019-05-20 22:14:53 -07:00
Console.WriteLine($"{((MediaType?)val).ShortName()} - {((MediaType?)val).LongName()}");
2019-04-04 00:37:17 -07:00
}
}
/// <summary>
/// List all programs with their short usable names
/// </summary>
private static void ListPrograms()
{
Console.WriteLine("Supported Programs:");
foreach (var val in Enum.GetValues(typeof(InternalProgram)))
{
if (((InternalProgram)val) == InternalProgram.NONE)
continue;
Console.WriteLine($"{((InternalProgram?)val).LongName()}");
}
}
2019-04-04 00:37:17 -07:00
/// <summary>
/// List all known systems with their short usable names
/// </summary>
private static void ListKnownSystems()
{
Console.WriteLine("Supported Known Systems:");
foreach (var val in Enum.GetValues(typeof(KnownSystem)))
{
if (((KnownSystem)val) == KnownSystem.NONE)
continue;
2019-05-20 22:14:53 -07:00
Console.WriteLine($"{((KnownSystem?)val).ShortName()} - {((KnownSystem?)val).LongName()}");
}
}
2019-04-04 00:37:17 -07:00
/// <summary>
/// Simple process counter to write to console
/// </summary>
private static void ProgressUpdated(object sender, Result value)
{
Console.WriteLine(value.Message);
}
}
}