using System;
using System.Collections.Generic;
using System.Linq;
using System.Text.RegularExpressions;
using StardewModdingAPI.Toolkit.Utilities;
using StardewModdingAPI.Web.Framework.LogParsing.Models;
namespace StardewModdingAPI.Web.ViewModels
{
/// The view model for the log parser page.
public class LogParserModel
{
/*********
** Fields
*********/
/// A regex pattern matching characters to remove from a mod name to create the slug ID.
private readonly Regex SlugInvalidCharPattern = new Regex("[^a-z0-9]", RegexOptions.Compiled | RegexOptions.IgnoreCase);
/*********
** Accessors
*********/
/// The paste ID.
public string PasteID { get; set; }
/// The viewer's detected OS, if known.
public Platform? DetectedPlatform { get; set; }
/// The parsed log info.
public ParsedLog ParsedLog { get; set; }
/// Whether to show the raw unparsed log.
public bool ShowRaw { get; set; }
/// A non-blocking warning while uploading the log.
public string UploadWarning { get; set; }
/// An error which occurred while uploading the log.
public string UploadError { get; set; }
/// An error which occurred while parsing the log file.
public string ParseError => this.ParsedLog?.Error;
/// When the uploaded file will no longer be available.
public DateTime? Expiry { get; set; }
/*********
** Public methods
*********/
/// Construct an instance.
public LogParserModel() { }
/// Construct an instance.
/// The paste ID.
/// The viewer's detected OS, if known.
public LogParserModel(string pasteID, Platform? platform)
{
this.PasteID = pasteID;
this.DetectedPlatform = platform;
this.ParsedLog = null;
this.ShowRaw = false;
}
/// Set the log parser result.
/// The parsed log info.
/// Whether to show the raw unparsed log.
public LogParserModel SetResult(ParsedLog parsedLog, bool showRaw)
{
this.ParsedLog = parsedLog;
this.ShowRaw = showRaw;
return this;
}
/// Get all content packs in the log grouped by the mod they're for.
public IDictionary GetContentPacksByMod()
{
// get all mods & content packs
LogModInfo[] mods = this.ParsedLog?.Mods;
if (mods == null || !mods.Any())
return new Dictionary();
// group by mod
return mods
.Where(mod => mod.IsContentPack)
.GroupBy(mod => mod.ContentPackFor)
.ToDictionary(group => group.Key, group => group.ToArray());
}
/// Get a sanitized mod name that's safe to use in anchors, attributes, and URLs.
/// The mod name.
public string GetSlug(string modName)
{
return this.SlugInvalidCharPattern.Replace(modName, "");
}
}
}