Compare commits

...

3 Commits

Author SHA1 Message Date
ef8f5c357f Some type 2024-07-08 17:42:33 -03:00
a1a141c77e ignore faaso config 2024-07-08 17:41:37 -03:00
77b1539776 Some types 2024-07-08 17:41:11 -03:00
3 changed files with 12 additions and 19 deletions

1
.gitignore vendored
View File

@ -7,3 +7,4 @@ export/
secrets/
.rucksack
.rucksack.toc
.faaso.yml

View File

@ -10,7 +10,7 @@ module Faaso
# In both cases stopped instances after the required
# scale is reached are deleted.
struct Scale
def local(options, name, scale) : Int32
def local(options, name : String, scale : Int) : Int32
funko = Funko::Funko.from_names([name])[0]
# Asked about scale
if funko.image_history.empty?
@ -22,31 +22,23 @@ module Faaso
return 0
end
# Asked to set scale
funko.scale(scale.as(String).to_i)
funko.scale(scale)
0
end
def remote(options, name, scale) : Int32
def remote(options, name : String, scale : Int) : Int32
user, password = Config.auth
Faaso.check_version
if !scale
Crest.get(
response = Crest.get(
"#{Config.server}funkos/#{name}/scale/", \
user: user, password: password) do |response|
loop do
Log.info { response.body_io.gets }
break if response.body_io.closed?
end
end
user: user, password: password)
Log.info { " => " + response.body }
else
Crest.post(
response = Crest.post(
"#{Config.server}funkos/#{name}/scale/",
{"scale" => scale}, user: user, password: password) do |response|
loop do
Log.info { response.body_io.gets }
break if response.body_io.closed?
end
end
{"scale" => scale}, user: user, password: password)
Log.info { " => " + response.body }
end
0
rescue ex : Crest::InternalServerError
@ -54,7 +46,7 @@ module Faaso
1
end
def run(options, name, scale) : Int32
def run(options, name : String, scale : Int) : Int32
if options["--local"]
return local(options, name, scale)
end

View File

@ -51,7 +51,7 @@ when .fetch("login", false)
when .fetch("new", false)
status = Faaso::Commands::New.new.run(ans, ans["FOLDER"].as(Array(String))[0])
when .fetch("scale", false)
status = Faaso::Commands::Scale.new.run(ans, ans["FUNKO"].as(String), ans["SCALE"])
status = Faaso::Commands::Scale.new.run(ans, ans["FUNKO"].as(String), ans["SCALE"].as(String).to_i)
when .fetch("secret", false)
status = Faaso::Commands::Secret.new.run(ans, ans["FUNKO"].as(String), ans["SECRET"].as(String))
when .fetch("status", false)