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
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
// This file is part of the SORA network and Polkaswap app.

// Copyright (c) 2020, 2021, Polka Biome Ltd. All rights reserved.
// SPDX-License-Identifier: BSD-4-Clause

// Redistribution and use in source and binary forms, with or without modification,
// are permitted provided that the following conditions are met:

// Redistributions of source code must retain the above copyright notice, this list
// of conditions and the following disclaimer.
// Redistributions in binary form must reproduce the above copyright notice, this
// list of conditions and the following disclaimer in the documentation and/or other
// materials provided with the distribution.
//
// All advertising materials mentioning features or use of this software must display
// the following acknowledgement: This product includes software developed by Polka Biome
// Ltd., SORA, and Polkaswap.
//
// Neither the name of the Polka Biome Ltd. nor the names of its contributors may be used
// to endorse or promote products derived from this software without specific prior written permission.

// THIS SOFTWARE IS PROVIDED BY Polka Biome Ltd. AS IS AND ANY EXPRESS OR IMPLIED WARRANTIES,
// INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL Polka Biome Ltd. BE LIABLE FOR ANY
// DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
// BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
// OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
// STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE
// USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

#![cfg_attr(not(feature = "std"), no_std)]
// TODO #167: fix clippy warnings
#![allow(clippy::all)]

pub use pallet::*;

// private-net to make circular dependencies work
#[cfg(all(test, feature = "private-net", feature = "wip"))] // order-book
mod tests;
pub mod weights;
pub use weights::*;
mod pallets;

#[frame_support::pallet]
pub mod pallet {
    use super::*;
    use common::{
        AssetInfoProvider, AssetName, AssetSymbol, BalancePrecision, ContentSource, Description,
    };
    use frame_support::dispatch::DispatchErrorWithPostInfo;
    use frame_support::sp_runtime::{traits::BadOrigin, BoundedBTreeSet};
    use frame_support::{dispatch::PostDispatchInfo, pallet_prelude::*};
    use frame_system::pallet_prelude::*;
    use frame_system::RawOrigin;
    use order_book::{MomentOf, OrderBookId};
    pub use pallets::order_book_tools::OrderBookFillSettings;
    use sp_std::prelude::*;

    #[pallet::pallet]
    pub struct Pallet<T>(_);

    #[pallet::config]
    pub trait Config: frame_system::Config + order_book::Config + trading_pair::Config {
        type WeightInfo: WeightInfo;
        type AssetInfoProvider: AssetInfoProvider<
            Self::AssetId,
            Self::AccountId,
            AssetSymbol,
            AssetName,
            BalancePrecision,
            ContentSource,
            Description,
        >;
        type QaToolsWhitelistCapacity: Get<u32>;
    }

    /// In order to prevent breaking testnets/staging with such zero-weight
    /// extrinsics from this pallet, we restrict `origin`s to root and trusted
    /// list of accounts (added by root).
    #[pallet::storage]
    #[pallet::getter(fn whitelisted_callers)]
    pub type WhitelistedCallers<T: Config> =
        StorageValue<_, BoundedBTreeSet<T::AccountId, T::QaToolsWhitelistCapacity>>;

    #[pallet::error]
    pub enum Error<T> {
        // this pallet errors
        /// Cannot add an account to the whitelist: it's full
        WhitelistFull,
        /// The account is already in the whitelist
        AlreadyInWhitelist,
        /// The account intended for removal is not in whitelist
        NotInWhitelist,

        // order_book pallet errors
        /// Did not find an order book with given id to fill. Likely an error with
        /// order book creation.
        CannotFillUnknownOrderBook,
    }

    #[pallet::call]
    impl<T: Config> Pallet<T> {
        /// Add the account to the list of allowed callers.
        #[pallet::call_index(0)]
        #[pallet::weight(<T as Config>::WeightInfo::order_book_create_empty_batch())]
        pub fn add_to_whitelist(
            origin: OriginFor<T>,
            account: T::AccountId,
        ) -> DispatchResultWithPostInfo {
            ensure_root(origin)?;
            WhitelistedCallers::<T>::mutate(|option_whitelist| {
                let whitelist = match option_whitelist {
                    Some(w) => w,
                    None => option_whitelist.insert(BoundedBTreeSet::new()),
                };
                whitelist
                    .try_insert(account)
                    .map_err(|_| Error::<T>::WhitelistFull)?
                    .then_some(())
                    .ok_or(Error::<T>::AlreadyInWhitelist)?;
                Ok::<(), Error<T>>(())
            })?;
            Ok(().into())
        }

        /// Remove the account from the list of allowed callers.
        #[pallet::call_index(1)]
        #[pallet::weight(<T as Config>::WeightInfo::order_book_create_empty_batch())]
        pub fn remove_from_whitelist(
            origin: OriginFor<T>,
            account: T::AccountId,
        ) -> DispatchResultWithPostInfo {
            ensure_root(origin)?;
            WhitelistedCallers::<T>::mutate(|option_whitelist| {
                let whitelist = match option_whitelist {
                    Some(w) => w,
                    None => option_whitelist.insert(BoundedBTreeSet::new()),
                };
                let was_not_whitelisted = !whitelist.remove(&account);
                if was_not_whitelisted {
                    Err(Error::<T>::NotInWhitelist)
                } else {
                    Ok::<(), Error<T>>(())
                }
            })?;
            Ok(().into())
        }

        /// Create multiple order books with default parameters (if do not exist yet).
        ///
        /// Parameters:
        /// - `origin`: caller, should be account because error messages for unsigned txs are unclear,
        /// - `order_book_ids`: ids of the created order books; trading pairs are created
        /// if necessary,
        #[pallet::call_index(2)]
        #[pallet::weight(<T as Config>::WeightInfo::order_book_create_empty_batch())]
        pub fn order_book_create_empty_batch(
            origin: OriginFor<T>,
            order_book_ids: Vec<OrderBookId<T::AssetId, T::DEXId>>,
        ) -> DispatchResultWithPostInfo {
            let who = Self::ensure_in_whitelist(origin)?;

            // replace with more convenient `with_pays_fee` when/if available
            // https://github.com/paritytech/substrate/pull/14470
            pallets::order_book_tools::create_multiple_empty_unchecked::<T>(&who, order_book_ids)
                .map_err(|e| DispatchErrorWithPostInfo {
                post_info: PostDispatchInfo {
                    actual_weight: None,
                    pays_fee: Pays::No,
                },
                error: e,
            })?;

            // Extrinsic is only for testing, so we return all fees
            // for simplicity.
            Ok(PostDispatchInfo {
                actual_weight: None,
                pays_fee: Pays::No,
            })
        }

        /// Create multiple many order books with default parameters if do not exist and
        /// fill them according to given parameters.
        ///
        /// Balance for placing the orders is minted automatically, trading pairs are
        /// created if needed.
        ///
        /// Parameters:
        /// - `origin`: caller, should be account because unsigned error messages are unclear,
        /// - `dex_id`: DEXId for all created order books,
        /// - `bids_owner`: Creator of the buy orders placed on the order books,
        /// - `asks_owner`: Creator of the sell orders placed on the order books,
        /// - `fill_settings`: Parameters for placing the orders in each order book.
        /// `best_bid_price` should be at least 3 price steps from the lowest accepted price,
        /// and `best_ask_price` - at least 3 steps below maximum price,
        #[pallet::call_index(3)]
        #[pallet::weight(<T as Config>::WeightInfo::order_book_create_and_fill_batch())]
        pub fn order_book_create_and_fill_batch(
            origin: OriginFor<T>,
            bids_owner: T::AccountId,
            asks_owner: T::AccountId,
            fill_settings: Vec<(
                OrderBookId<T::AssetId, T::DEXId>,
                OrderBookFillSettings<MomentOf<T>>,
            )>,
        ) -> DispatchResultWithPostInfo {
            let who = Self::ensure_in_whitelist(origin)?;

            let order_book_ids: Vec<_> = fill_settings.iter().map(|(id, _)| id).cloned().collect();
            pallets::order_book_tools::create_multiple_empty_unchecked::<T>(&who, order_book_ids)
                .map_err(|e| DispatchErrorWithPostInfo {
                post_info: PostDispatchInfo {
                    actual_weight: None,
                    pays_fee: Pays::No,
                },
                error: e,
            })?;
            pallets::order_book_tools::fill_multiple_empty_unchecked::<T>(
                bids_owner,
                asks_owner,
                fill_settings,
            )
            .map_err(|e| DispatchErrorWithPostInfo {
                post_info: PostDispatchInfo {
                    actual_weight: None,
                    pays_fee: Pays::No,
                },
                error: e,
            })?;

            // Extrinsic is only for testing, so we return all fees
            // for simplicity.
            Ok(PostDispatchInfo {
                actual_weight: None,
                pays_fee: Pays::No,
            })
        }
    }

    impl<T: Config> Pallet<T> {
        pub fn ensure_in_whitelist<OuterOrigin>(
            origin: OuterOrigin,
        ) -> Result<T::AccountId, BadOrigin>
        where
            OuterOrigin: Into<Result<RawOrigin<T::AccountId>, OuterOrigin>>,
        {
            let who = match origin.into() {
                Ok(RawOrigin::Signed(w)) => w,
                _ => return Err(BadOrigin),
            };
            let Some(whitelist) = WhitelistedCallers::<T>::get() else {
                return Err(BadOrigin)
            };
            if whitelist.contains(&who) {
                Ok(who)
            } else {
                Err(BadOrigin)
            }
        }
    }
}