github.com/swaros/contxt/module/runner@v0.0.0-20240305083542-3dbd4436ac40/cmdsession.go (about)

     1  // Copyright (c) 2023 Thomas Ziegler <thomas.zglr@googlemail.com>. All rights reserved.
     2  //
     3  // # Licensed under the MIT License
     4  //
     5  // Permission is hereby granted, free of charge, to any person obtaining a copy
     6  // of this software and associated documentation files (the "Software"), to deal
     7  // in the Software without restriction, including without limitation the rights
     8  // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
     9  // copies of the Software, and to permit persons to whom the Software is
    10  // furnished to do so, subject to the following conditions:
    11  //
    12  // The above copyright notice and this permission notice shall be included in all
    13  // copies or substantial portions of the Software.
    14  //
    15  // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
    16  // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
    17  // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
    18  // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
    19  // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
    20  // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
    21  // SOFTWARE.
    22  package runner
    23  
    24  import (
    25  	"github.com/swaros/contxt/module/ctemplate"
    26  	"github.com/swaros/contxt/module/ctxout"
    27  	"github.com/swaros/contxt/module/mimiclog"
    28  )
    29  
    30  type CmdSession struct {
    31  	Log              *SessionLogger         // the whole logging stuff
    32  	TemplateHndl     *ctemplate.Template    // template handler they execute the template
    33  	Cobra            *SessionCobra          // the cobra command handler
    34  	OutPutHdnl       ctxout.StreamInterface // used for output stream
    35  	Printer          ctxout.PrintInterface  // used formated printing to the console
    36  	DefaultVariables map[string]string      // DefaultVariables are variables which are set for every task. they are predefines. not the used variables itself
    37  	SharedHelper     *SharedHelper          // SharedHelper is responsible for the shared tasks.
    38  }
    39  
    40  type SessionLogger struct {
    41  	LogLevel string
    42  	Logger   mimiclog.Logger
    43  }
    44  
    45  func NewCmdSession() *CmdSession {
    46  	logger := NewLogrusLogger()
    47  	session := &CmdSession{
    48  		OutPutHdnl:       ctxout.NewFmtWrap(),
    49  		Printer:          ctxout.NewMOWrap(),
    50  		Cobra:            NewCobraCmds(),
    51  		TemplateHndl:     ctemplate.New(),
    52  		SharedHelper:     NewSharedHelper(),
    53  		DefaultVariables: make(map[string]string),
    54  		Log: &SessionLogger{
    55  			LogLevel: "error",
    56  			Logger:   logger,
    57  		},
    58  	}
    59  	mimiclog.ApplyLogger(logger, session.TemplateHndl)
    60  	mimiclog.ApplyIfPossible(logger, session.TemplateHndl)
    61  	mimiclog.ApplyIfPossible(logger, session.SharedHelper)
    62  	return session
    63  }