30 lines
614 B
Ruby
30 lines
614 B
Ruby
# Copyright (c) HashiCorp, Inc.
|
|
# SPDX-License-Identifier: BUSL-1.1
|
|
|
|
module Vagrant
|
|
module Action
|
|
module Builtin
|
|
# This middleware simply outputs a message to the UI.
|
|
class Message
|
|
def initialize(app, env, message, **opts)
|
|
@app = app
|
|
@message = message
|
|
@opts = opts
|
|
end
|
|
|
|
def call(env)
|
|
if !@opts[:post]
|
|
env[:ui].output(@message)
|
|
end
|
|
|
|
@app.call(env)
|
|
|
|
if @opts[:post]
|
|
env[:ui].output(@message)
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|