1
+ /**********************************************************************
2
+ * Copyright (C) 2025 Red Hat, Inc.
3
+ *
4
+ * Licensed under the Apache License, Version 2.0 (the "License");
5
+ * you may not use this file except in compliance with the License.
6
+ * You may obtain a copy of the License at
7
+ *
8
+ * http://www.apache.org/licenses/LICENSE-2.0
9
+ *
10
+ * Unless required by applicable law or agreed to in writing, software
11
+ * distributed under the License is distributed on an "AS IS" BASIS,
12
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
+ * See the License for the specific language governing permissions and
14
+ * limitations under the License.
15
+ *
16
+ * SPDX-License-Identifier: Apache-2.0
17
+ ***********************************************************************/
18
+ import type * as extensionApi from '@podman-desktop/api' ;
19
+
20
+ export interface FailureObject {
21
+ description : string ;
22
+ docLinksDescription ?: string ;
23
+ docLinks ?: extensionApi . CheckResultLink ;
24
+ fixCommand ?: extensionApi . CheckResultFixCommand ;
25
+ }
26
+
27
+ export abstract class BaseCheck implements extensionApi . InstallCheck {
28
+ abstract title : string ;
29
+ abstract execute ( ) : Promise < extensionApi . CheckResult > ;
30
+
31
+ protected createFailureResult ( failureObject : FailureObject ) : extensionApi . CheckResult {
32
+ const result : extensionApi . CheckResult = { successful : false , description : failureObject . description } ;
33
+ if ( failureObject . docLinksDescription ) {
34
+ result . docLinksDescription = failureObject . docLinksDescription ;
35
+ }
36
+ if ( failureObject . docLinks ) {
37
+ result . docLinks = [ { url : failureObject . docLinks . url , title : failureObject . docLinks . title } ] ;
38
+ }
39
+ if ( failureObject . fixCommand ) {
40
+ result . fixCommand = {
41
+ id : failureObject . fixCommand . id ,
42
+ title : failureObject . fixCommand . title ,
43
+ } ;
44
+ }
45
+ return result ;
46
+ }
47
+
48
+ protected createSuccessfulResult ( ) : extensionApi . CheckResult {
49
+ return { successful : true } ;
50
+ }
51
+ }
52
+
53
+ export class SequenceCheck extends BaseCheck {
54
+ title : string ;
55
+
56
+ constructor (
57
+ title : string ,
58
+ private checks : BaseCheck [ ] ,
59
+ ) {
60
+ super ( ) ;
61
+ this . title = title ;
62
+ }
63
+
64
+ async execute ( ) : Promise < extensionApi . CheckResult > {
65
+ for ( const check of this . checks ) {
66
+ const result = await check . execute ( ) ;
67
+ if ( ! result . successful ) {
68
+ return result ;
69
+ }
70
+ }
71
+ return this . createSuccessfulResult ( ) ;
72
+ }
73
+ }
0 commit comments