blob: 5b18331f7b273c3cc7af9616e39b47b452bb458c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
|
using System.Collections.Generic;
using System.Linq;
namespace StardewModdingAPI.Web.ViewModels.JsonValidator
{
/// <summary>The view model for the JSON validator page.</summary>
public class JsonValidatorModel
{
/*********
** Accessors
*********/
/// <summary>The paste ID.</summary>
public string PasteID { get; set; }
/// <summary>The schema name with which the JSON was validated.</summary>
public string SchemaName { get; set; }
/// <summary>The supported JSON schemas (names indexed by ID).</summary>
public readonly IDictionary<string, string> SchemaFormats;
/// <summary>The validated content.</summary>
public string Content { get; set; }
/// <summary>The schema validation errors, if any.</summary>
public JsonValidatorErrorModel[] Errors { get; set; } = new JsonValidatorErrorModel[0];
/// <summary>An error which occurred while uploading the JSON to Pastebin.</summary>
public string UploadError { get; set; }
/// <summary>An error which occurred while parsing the JSON.</summary>
public string ParseError { get; set; }
/// <summary>A web URL to the user-facing format documentation.</summary>
public string FormatUrl { get; set; }
/*********
** Public methods
*********/
/// <summary>Construct an instance.</summary>
public JsonValidatorModel() { }
/// <summary>Construct an instance.</summary>
/// <param name="pasteID">The paste ID.</param>
/// <param name="schemaName">The schema name with which the JSON was validated.</param>
/// <param name="schemaFormats">The supported JSON schemas (names indexed by ID).</param>
public JsonValidatorModel(string pasteID, string schemaName, IDictionary<string, string> schemaFormats)
{
this.PasteID = pasteID;
this.SchemaName = schemaName;
this.SchemaFormats = schemaFormats;
}
/// <summary>Set the validated content.</summary>
/// <param name="content">The validated content.</param>
public JsonValidatorModel SetContent(string content)
{
this.Content = content;
return this;
}
/// <summary>Set the error which occurred while uploading the log to Pastebin.</summary>
/// <param name="error">The error message.</param>
public JsonValidatorModel SetUploadError(string error)
{
this.UploadError = error;
return this;
}
/// <summary>Set the error which occurred while parsing the JSON.</summary>
/// <param name="error">The error message.</param>
public JsonValidatorModel SetParseError(string error)
{
this.ParseError = error;
return this;
}
/// <summary>Add validation errors to the response.</summary>
/// <param name="errors">The schema validation errors.</param>
public JsonValidatorModel AddErrors(params JsonValidatorErrorModel[] errors)
{
this.Errors = this.Errors.Concat(errors).ToArray();
return this;
}
}
}
|