cloudfoundry/stratos

View on GitHub
src/jetstream/plugins/cfappssh/main.go

Summary

Maintainability
A
3 hrs
Test Coverage
package cfappssh

import (
    "errors"

    "github.com/cloudfoundry-incubator/stratos/src/jetstream/repository/interfaces"
    "github.com/labstack/echo/v4"
)

// Module init will register plugin
func init() {
    interfaces.AddPlugin("cfappssh", []string{"cloudfoundry"}, Init)
}

// CFAppSSH - Plugin to allow SSH into an application instance
type CFAppSSH struct {
    portalProxy interfaces.PortalProxy
}

// Init creates a new CFAppSSH
func Init(portalProxy interfaces.PortalProxy) (interfaces.StratosPlugin, error) {
    return &CFAppSSH{portalProxy: portalProxy}, nil
}

// GetMiddlewarePlugin gets the middleware plugin for this plugin
func (CFAppSSH *CFAppSSH) GetMiddlewarePlugin() (interfaces.MiddlewarePlugin, error) {
    return nil, errors.New("Not implemented")
}

// GetEndpointPlugin gets the endpoint plugin for this plugin
func (CFAppSSH *CFAppSSH) GetEndpointPlugin() (interfaces.EndpointPlugin, error) {
    return nil, errors.New("Not implemented")
}

// GetRoutePlugin gets the route plugin for this plugin
func (CFAppSSH *CFAppSSH) GetRoutePlugin() (interfaces.RoutePlugin, error) {
    return CFAppSSH, nil
}

// AddAdminGroupRoutes adds the admin routes for this plugin to the Echo server
func (CFAppSSH *CFAppSSH) AddAdminGroupRoutes(echoGroup *echo.Group) {
    // no-op
}

// AddSessionGroupRoutes adds the session routes for this plugin to the Echo server
func (CFAppSSH *CFAppSSH) AddSessionGroupRoutes(echoGroup *echo.Group) {
    // Application SSH
    echoGroup.GET("/:cnsiGuid/apps/:appGuid/ssh/:appInstance", CFAppSSH.appSSH)
}

// Init performs plugin initialization
func (CFAppSSH *CFAppSSH) Init() error {
    return nil
}