- Add a new ip-api client to the project. - This client uses the ip-api.com API to get IP information. - An example is provided in `examples/develop/ipapi`. Co-authored-by: mahmmoud.hassanein <mahmmoud.hassanein@gmail.com>
103 lines
2.1 KiB
V
103 lines
2.1 KiB
V
module ipapi
|
|
|
|
import freeflowuniverse.herolib.core.base
|
|
import freeflowuniverse.herolib.core.playbook
|
|
import freeflowuniverse.herolib.ui.console
|
|
|
|
__global (
|
|
ipapi_global map[string]&IPApi
|
|
ipapi_default string
|
|
)
|
|
|
|
/////////FACTORY
|
|
|
|
@[params]
|
|
pub struct ArgsGet {
|
|
pub mut:
|
|
name string
|
|
}
|
|
|
|
fn args_get(args_ ArgsGet) ArgsGet {
|
|
mut args := args_
|
|
if args.name == '' {
|
|
args.name = ipapi_default
|
|
}
|
|
if args.name == '' {
|
|
args.name = 'default'
|
|
}
|
|
return args
|
|
}
|
|
|
|
pub fn get(args_ ArgsGet) !&IPApi {
|
|
mut args := args_get(args_)
|
|
if args.name !in ipapi_global {
|
|
if args.name == 'default' {
|
|
if !config_exists(args) {
|
|
if default {
|
|
config_save(args)!
|
|
}
|
|
}
|
|
config_load(args)!
|
|
}
|
|
}
|
|
return ipapi_global[args.name] or {
|
|
println(ipapi_global)
|
|
panic('could not get config for ipapi with name:${args.name}')
|
|
}
|
|
}
|
|
|
|
fn config_exists(args_ ArgsGet) bool {
|
|
mut args := args_get(args_)
|
|
mut context := base.context() or { panic('bug') }
|
|
return context.hero_config_exists('ipapi', args.name)
|
|
}
|
|
|
|
fn config_load(args_ ArgsGet) ! {
|
|
mut args := args_get(args_)
|
|
mut context := base.context()!
|
|
mut heroscript := context.hero_config_get('ipapi', args.name)!
|
|
play(heroscript: heroscript)!
|
|
}
|
|
|
|
fn config_save(args_ ArgsGet) ! {
|
|
mut args := args_get(args_)
|
|
mut context := base.context()!
|
|
context.hero_config_set('ipapi', args.name, heroscript_default()!)!
|
|
}
|
|
|
|
fn set(o IPApi) ! {
|
|
mut o2 := obj_init(o)!
|
|
ipapi_global[o.name] = &o2
|
|
ipapi_default = o.name
|
|
}
|
|
|
|
@[params]
|
|
pub struct PlayArgs {
|
|
pub mut:
|
|
heroscript string // if filled in then plbook will be made out of it
|
|
plbook ?playbook.PlayBook
|
|
reset bool
|
|
}
|
|
|
|
pub fn play(args_ PlayArgs) ! {
|
|
mut args := args_
|
|
|
|
if args.heroscript == '' {
|
|
args.heroscript = heroscript_default()!
|
|
}
|
|
mut plbook := args.plbook or { playbook.new(text: args.heroscript)! }
|
|
|
|
mut install_actions := plbook.find(filter: 'ipapi.configure')!
|
|
if install_actions.len > 0 {
|
|
for install_action in install_actions {
|
|
mut p := install_action.params
|
|
cfg_play(p)!
|
|
}
|
|
}
|
|
}
|
|
|
|
// switch instance to be used for ipapi
|
|
pub fn switch(name string) {
|
|
ipapi_default = name
|
|
}
|