-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathHookLogger.cs
121 lines (106 loc) · 3.47 KB
/
HookLogger.cs
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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
using GitHooksCsharp.Logging;
namespace GitHooksCsharp.Hooks;
// TODO: Implement ILogger interface.
/// <summary>
/// The HookLogger class provides logging functionalities for different hook types.
/// </summary>
public class HookLogger
{
private readonly HookTypes _hookType;
private readonly string _title;
/// <summary>
/// Initializes a new instance of the HookLogger class.
/// </summary>
/// <param name="hookType">The type of the hook.</param>
public HookLogger(HookTypes hookType)
{
_hookType = hookType;
_title = $"-------------- 🪝 {_hookType} 🕵🏻 --------------";
}
/// <summary>
/// Logs the start of a hook.
/// </summary>
public void StartHook()
{
Logger.BlankLine();
Logger.Log(ConsoleColor.Cyan, _title);
}
/// <summary>
/// Logs that the hook was skipped and finishes the hook.
/// </summary>
public void SkipHook()
{
Logger.LogWarning($"⚠️ {_hookType}: Skipped ⚠️");
FinishHook();
}
/// <summary>
/// Logs the end of a hook.
/// </summary>
public void FinishHook()
{
Logger.Log(ConsoleColor.Cyan, _title);
Logger.BlankLine();
}
/// <summary>
/// Logs the result of the hook based on success or failure.
/// </summary>
/// <param name="success">Indicates whether the hook was successful.</param>
public void FinishHook(bool success)
{
if (success)
Logger.LogSuccess($"✅ {_hookType}: Checks passed ✅");
else
Logger.LogError($"❌ {_hookType}: Failed to pass the checks ❌");
FinishHook();
}
/// <summary>
/// Logs the start of a task.
/// </summary>
/// <param name="output">The output message to log.</param>
public void StartTask(string output)
{
Logger.LogInfo($"➡️ {output}");
}
/// <summary>
/// Logs the result of a task based on success or failure.
/// </summary>
/// <param name="output">The output message to log.</param>
/// <param name="success">Indicates whether the task was successful.</param>
public void FinishTask(string output, bool success)
{
if (success)
Logger.LogSuccess($"\t✅ {output}");
else
Logger.LogError($"\t❌ {output}");
Logger.BlankLine();
}
/// <summary>
/// Logs the result of a task based on success or failure, including additional result details.
/// </summary>
/// <typeparam name="T">The type of the result.</typeparam>
/// <param name="output">The output message to log.</param>
/// <param name="success">Indicates whether the task was successful.</param>
/// <param name="result">The result object containing additional details.</param>
public void FinishTask<T>(string output, bool success, BaseResult<T>? result = default) where T : class
{
if (success)
{
Logger.LogSuccess($"\t✅ {output}");
if (result != default)
{
foreach (var error in result.Outputs)
Logger.LogError($"\t\t🟨 {error}");
}
}
else
{
Logger.LogError($"\t❌ {output}");
if (result != default)
{
foreach (var error in result.Errors)
Logger.LogError($"\t\t🟨 {error}");
}
}
Logger.BlankLine();
}
}