1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
use std::fmt::Debug;

use abstract_os::objects::module::ModuleInfo;
use abstract_os::objects::module::ModuleVersion;
use boot_core::state::StateInterface;
use cosmwasm_std::{to_binary, Addr, Binary};

use serde::Serialize;

use abstract_os::manager::*;

use crate::AbstractOS;
use boot_core::{BootError, Contract, IndexResponse, TxHandler, TxResponse};

pub type Manager<Chain> = AbstractOS<Chain, ExecuteMsg, InstantiateMsg, QueryMsg, MigrateMsg>;

impl<Chain: TxHandler + Clone> Manager<Chain>
where
    TxResponse<Chain>: IndexResponse,
{
    pub fn new(name: &str, chain: &Chain) -> Self {
        Self(
            Contract::new(name, chain).with_wasm_path("manager"), // .with_mock(Box::new(
                                                                  //     ContractWrapper::new_with_empty(
                                                                  //         ::contract::execute,
                                                                  //         ::contract::instantiate,
                                                                  //         ::contract::query,
                                                                  //     ),
                                                                  // ))
        )
    }

    // pub fn update_terraswap_trader(
    //     &self,
    //     api: &str,
    //     to_add: Option<Vec<String>>,
    //     to_remove: Option<Vec<String>>,
    // ) -> Result<(), BootError> {
    //     self.execute(
    //         &ExecuteMsg::ExecOnModule {
    //             module_id: api.into(),
    //             exec_msg: to_binary(&<ApiExecuteMsg<Empty>>::Configure(BaseExecuteMsg::UpdateTraders {
    //                 to_add,
    //                 to_remove,
    //             }))
    //             .unwrap(),
    //         },
    //         None,
    //     )?;
    //     Ok(())
    // }

    pub fn upgrade_module<M: Serialize>(
        &self,
        module_id: &str,
        migrate_msg: &M,
    ) -> Result<(), BootError> {
        self.execute(
            &ExecuteMsg::Upgrade {
                module: ModuleInfo::from_id(module_id, ModuleVersion::Latest {})?,
                migrate_msg: Some(to_binary(migrate_msg)?),
            },
            None,
        )?;
        Ok(())
    }

    pub fn install_module<M: Serialize>(
        &self,
        module_id: &str,
        init_msg: Option<&M>,
    ) -> Result<(), BootError> {
        self.execute(
            &ExecuteMsg::CreateModule {
                module: ModuleInfo::from_id(module_id, ModuleVersion::Latest {})?,
                init_msg: init_msg.map(to_binary).transpose()?,
            },
            None,
        )?;
        Ok(())
    }

    pub fn execute_on_module(&self, module: &str, msg: impl Serialize) -> Result<(), BootError> {
        self.execute(
            &ExecuteMsg::ExecOnModule {
                module_id: module.into(),
                exec_msg: to_binary(&msg).unwrap(),
            },
            None,
        )?;
        Ok(())
    }

    pub fn add_module<
        I: Serialize + Debug,
        H: Serialize + Debug,
        N: Serialize + Debug,
        S: Serialize + Debug,
    >(
        &self,
        module: &Contract<Chain, H, I, N, S>,
        init_msg: Option<&I>,
        contract_id: &str,
        version: String,
    ) -> Result<TxResponse<Chain>, BootError> {
        let mut msg: Option<Binary> = None;
        if init_msg.is_some() {
            msg = init_msg.map(|msg| to_binary(msg).unwrap());
        }
        let result = self.execute(
            &ExecuteMsg::CreateModule {
                module: ModuleInfo::from_id(contract_id, ModuleVersion::Version(version))?,
                init_msg: msg,
            },
            None,
        )?;

        let module_address = result.event_attr_value("wasm", "new module:")?;
        self.chain()
            .state()
            .set_address(&module.id, &Addr::unchecked(module_address));

        Ok(result)
    }
}

// pub fn get_module_kind(name: &str) -> anyhow::Result<ModuleKind> {
//     if [TERRASWAP].contains(&name) {
//         return Ok(ModuleKind::API);
//     } else if [LIQUIDITY_INTERFACE, SUBSCRIPTION].contains(&name) {
//         Ok(ModuleKind::AddOn)
//     } else {
//         return Err(anyhow::Error::msg(
//             "The requested module to be added is not a module",
//         ));
//     }
// }