From 9638f5a31b5ed7e341dfde4a3a6ade13639f773e Mon Sep 17 00:00:00 2001
From: my-dev <>
Date: Fri, 16 Feb 2024 13:23:45 +0000
Subject: [PATCH] Initial commit
---
.gitignore | 7 +
Dockerfile | 6 +
LICENSE | 674 ++++++++++++++++++
README.md | 30 +
alembic/README | 1 +
alembic/env.py | 66 ++
alembic/script.py.mako | 26 +
.../5c3d7b5ae3fb_add_rates_to_asset.py | 30 +
.../versions/9749eb810999_add_new_field.py | 30 +
app/__main__.py | 70 ++
app/api/__init__.py | 9 +
app/api/routes/_index.py | 7 +
app/api/routes/tonconnect.py | 11 +
app/bot/__init__.py | 78 ++
app/bot/routers/index.py | 54 ++
app/bot/routers/tonconnect.py | 66 ++
app/core/__init__.py | 0
app/core/_config.py | 23 +
app/core/_defaults.py | 11 +
app/core/_keyboards.py | 68 ++
app/core/_utils/__init__.py | 1 +
app/core/_utils/create_maria_tables.py | 10 +
app/core/_utils/tg_process_template.py | 49 ++
app/core/logger.py | 40 ++
app/core/models/__init__.py | 6 +
app/core/models/_blockchain/__init__.py | 0
app/core/models/_blockchain/ton/__init__.py | 0
app/core/models/_blockchain/ton/connect.py | 152 ++++
app/core/models/_telegram/__init__.py | 1 +
app/core/models/_telegram/wrapped_bot.py | 129 ++++
app/core/models/asset.py | 50 ++
app/core/models/base.py | 3 +
app/core/models/memory.py | 50 ++
app/core/models/transaction.py | 38 +
app/core/models/user/__init__.py | 29 +
app/core/models/wallet_connection.py | 27 +
app/core/storage.py | 44 ++
app/core/transactions.py | 76 ++
app/core/translation.py | 28 +
docker-compose.yml | 30 +
env.example | 5 +
locale/en/LC_MESSAGES/sanic_telegram_bot.mo | Bin 0 -> 441 bytes
locale/en/LC_MESSAGES/sanic_telegram_bot.po | 26 +
mariadb-healthcheck.sh | 353 +++++++++
requirements.txt | 7 +
45 files changed, 2421 insertions(+)
create mode 100644 .gitignore
create mode 100644 Dockerfile
create mode 100644 LICENSE
create mode 100644 README.md
create mode 100644 alembic/README
create mode 100644 alembic/env.py
create mode 100644 alembic/script.py.mako
create mode 100644 alembic/versions/5c3d7b5ae3fb_add_rates_to_asset.py
create mode 100644 alembic/versions/9749eb810999_add_new_field.py
create mode 100644 app/__main__.py
create mode 100644 app/api/__init__.py
create mode 100644 app/api/routes/_index.py
create mode 100644 app/api/routes/tonconnect.py
create mode 100644 app/bot/__init__.py
create mode 100644 app/bot/routers/index.py
create mode 100644 app/bot/routers/tonconnect.py
create mode 100644 app/core/__init__.py
create mode 100644 app/core/_config.py
create mode 100644 app/core/_defaults.py
create mode 100644 app/core/_keyboards.py
create mode 100644 app/core/_utils/__init__.py
create mode 100644 app/core/_utils/create_maria_tables.py
create mode 100644 app/core/_utils/tg_process_template.py
create mode 100644 app/core/logger.py
create mode 100644 app/core/models/__init__.py
create mode 100644 app/core/models/_blockchain/__init__.py
create mode 100644 app/core/models/_blockchain/ton/__init__.py
create mode 100644 app/core/models/_blockchain/ton/connect.py
create mode 100644 app/core/models/_telegram/__init__.py
create mode 100644 app/core/models/_telegram/wrapped_bot.py
create mode 100644 app/core/models/asset.py
create mode 100644 app/core/models/base.py
create mode 100644 app/core/models/memory.py
create mode 100644 app/core/models/transaction.py
create mode 100644 app/core/models/user/__init__.py
create mode 100644 app/core/models/wallet_connection.py
create mode 100644 app/core/storage.py
create mode 100644 app/core/transactions.py
create mode 100644 app/core/translation.py
create mode 100644 docker-compose.yml
create mode 100644 env.example
create mode 100644 locale/en/LC_MESSAGES/sanic_telegram_bot.mo
create mode 100644 locale/en/LC_MESSAGES/sanic_telegram_bot.po
create mode 100644 mariadb-healthcheck.sh
create mode 100644 requirements.txt
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..a56cf52
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,7 @@
+.idea
+.env
+venv
+logs
+sqlStorage
+playground
+alembic.ini
diff --git a/Dockerfile b/Dockerfile
new file mode 100644
index 0000000..3398668
--- /dev/null
+++ b/Dockerfile
@@ -0,0 +1,6 @@
+FROM python:3.9
+WORKDIR /app
+COPY requirements.txt .
+RUN pip install -r requirements.txt
+COPY . .
+CMD ["python", "app"]
diff --git a/LICENSE b/LICENSE
new file mode 100644
index 0000000..f288702
--- /dev/null
+++ b/LICENSE
@@ -0,0 +1,674 @@
+ GNU GENERAL PUBLIC LICENSE
+ Version 3, 29 June 2007
+
+ Copyright (C) 2007 Free Software Foundation, Inc.
+ Everyone is permitted to copy and distribute verbatim copies
+ of this license document, but changing it is not allowed.
+
+ Preamble
+
+ The GNU General Public License is a free, copyleft license for
+software and other kinds of works.
+
+ The licenses for most software and other practical works are designed
+to take away your freedom to share and change the works. By contrast,
+the GNU General Public License is intended to guarantee your freedom to
+share and change all versions of a program--to make sure it remains free
+software for all its users. We, the Free Software Foundation, use the
+GNU General Public License for most of our software; it applies also to
+any other work released this way by its authors. You can apply it to
+your programs, too.
+
+ When we speak of free software, we are referring to freedom, not
+price. Our General Public Licenses are designed to make sure that you
+have the freedom to distribute copies of free software (and charge for
+them if you wish), that you receive source code or can get it if you
+want it, that you can change the software or use pieces of it in new
+free programs, and that you know you can do these things.
+
+ To protect your rights, we need to prevent others from denying you
+these rights or asking you to surrender the rights. Therefore, you have
+certain responsibilities if you distribute copies of the software, or if
+you modify it: responsibilities to respect the freedom of others.
+
+ For example, if you distribute copies of such a program, whether
+gratis or for a fee, you must pass on to the recipients the same
+freedoms that you received. You must make sure that they, too, receive
+or can get the source code. And you must show them these terms so they
+know their rights.
+
+ Developers that use the GNU GPL protect your rights with two steps:
+(1) assert copyright on the software, and (2) offer you this License
+giving you legal permission to copy, distribute and/or modify it.
+
+ For the developers' and authors' protection, the GPL clearly explains
+that there is no warranty for this free software. For both users' and
+authors' sake, the GPL requires that modified versions be marked as
+changed, so that their problems will not be attributed erroneously to
+authors of previous versions.
+
+ Some devices are designed to deny users access to install or run
+modified versions of the software inside them, although the manufacturer
+can do so. This is fundamentally incompatible with the aim of
+protecting users' freedom to change the software. The systematic
+pattern of such abuse occurs in the area of products for individuals to
+use, which is precisely where it is most unacceptable. Therefore, we
+have designed this version of the GPL to prohibit the practice for those
+products. If such problems arise substantially in other domains, we
+stand ready to extend this provision to those domains in future versions
+of the GPL, as needed to protect the freedom of users.
+
+ Finally, every program is threatened constantly by software patents.
+States should not allow patents to restrict development and use of
+software on general-purpose computers, but in those that do, we wish to
+avoid the special danger that patents applied to a free program could
+make it effectively proprietary. To prevent this, the GPL assures that
+patents cannot be used to render the program non-free.
+
+ The precise terms and conditions for copying, distribution and
+modification follow.
+
+ TERMS AND CONDITIONS
+
+ 0. Definitions.
+
+ "This License" refers to version 3 of the GNU General Public License.
+
+ "Copyright" also means copyright-like laws that apply to other kinds of
+works, such as semiconductor masks.
+
+ "The Program" refers to any copyrightable work licensed under this
+License. Each licensee is addressed as "you". "Licensees" and
+"recipients" may be individuals or organizations.
+
+ To "modify" a work means to copy from or adapt all or part of the work
+in a fashion requiring copyright permission, other than the making of an
+exact copy. The resulting work is called a "modified version" of the
+earlier work or a work "based on" the earlier work.
+
+ A "covered work" means either the unmodified Program or a work based
+on the Program.
+
+ To "propagate" a work means to do anything with it that, without
+permission, would make you directly or secondarily liable for
+infringement under applicable copyright law, except executing it on a
+computer or modifying a private copy. Propagation includes copying,
+distribution (with or without modification), making available to the
+public, and in some countries other activities as well.
+
+ To "convey" a work means any kind of propagation that enables other
+parties to make or receive copies. Mere interaction with a user through
+a computer network, with no transfer of a copy, is not conveying.
+
+ An interactive user interface displays "Appropriate Legal Notices"
+to the extent that it includes a convenient and prominently visible
+feature that (1) displays an appropriate copyright notice, and (2)
+tells the user that there is no warranty for the work (except to the
+extent that warranties are provided), that licensees may convey the
+work under this License, and how to view a copy of this License. If
+the interface presents a list of user commands or options, such as a
+menu, a prominent item in the list meets this criterion.
+
+ 1. Source Code.
+
+ The "source code" for a work means the preferred form of the work
+for making modifications to it. "Object code" means any non-source
+form of a work.
+
+ A "Standard Interface" means an interface that either is an official
+standard defined by a recognized standards body, or, in the case of
+interfaces specified for a particular programming language, one that
+is widely used among developers working in that language.
+
+ The "System Libraries" of an executable work include anything, other
+than the work as a whole, that (a) is included in the normal form of
+packaging a Major Component, but which is not part of that Major
+Component, and (b) serves only to enable use of the work with that
+Major Component, or to implement a Standard Interface for which an
+implementation is available to the public in source code form. A
+"Major Component", in this context, means a major essential component
+(kernel, window system, and so on) of the specific operating system
+(if any) on which the executable work runs, or a compiler used to
+produce the work, or an object code interpreter used to run it.
+
+ The "Corresponding Source" for a work in object code form means all
+the source code needed to generate, install, and (for an executable
+work) run the object code and to modify the work, including scripts to
+control those activities. However, it does not include the work's
+System Libraries, or general-purpose tools or generally available free
+programs which are used unmodified in performing those activities but
+which are not part of the work. For example, Corresponding Source
+includes interface definition files associated with source files for
+the work, and the source code for shared libraries and dynamically
+linked subprograms that the work is specifically designed to require,
+such as by intimate data communication or control flow between those
+subprograms and other parts of the work.
+
+ The Corresponding Source need not include anything that users
+can regenerate automatically from other parts of the Corresponding
+Source.
+
+ The Corresponding Source for a work in source code form is that
+same work.
+
+ 2. Basic Permissions.
+
+ All rights granted under this License are granted for the term of
+copyright on the Program, and are irrevocable provided the stated
+conditions are met. This License explicitly affirms your unlimited
+permission to run the unmodified Program. The output from running a
+covered work is covered by this License only if the output, given its
+content, constitutes a covered work. This License acknowledges your
+rights of fair use or other equivalent, as provided by copyright law.
+
+ You may make, run and propagate covered works that you do not
+convey, without conditions so long as your license otherwise remains
+in force. You may convey covered works to others for the sole purpose
+of having them make modifications exclusively for you, or provide you
+with facilities for running those works, provided that you comply with
+the terms of this License in conveying all material for which you do
+not control copyright. Those thus making or running the covered works
+for you must do so exclusively on your behalf, under your direction
+and control, on terms that prohibit them from making any copies of
+your copyrighted material outside their relationship with you.
+
+ Conveying under any other circumstances is permitted solely under
+the conditions stated below. Sublicensing is not allowed; section 10
+makes it unnecessary.
+
+ 3. Protecting Users' Legal Rights From Anti-Circumvention Law.
+
+ No covered work shall be deemed part of an effective technological
+measure under any applicable law fulfilling obligations under article
+11 of the WIPO copyright treaty adopted on 20 December 1996, or
+similar laws prohibiting or restricting circumvention of such
+measures.
+
+ When you convey a covered work, you waive any legal power to forbid
+circumvention of technological measures to the extent such circumvention
+is effected by exercising rights under this License with respect to
+the covered work, and you disclaim any intention to limit operation or
+modification of the work as a means of enforcing, against the work's
+users, your or third parties' legal rights to forbid circumvention of
+technological measures.
+
+ 4. Conveying Verbatim Copies.
+
+ You may convey verbatim copies of the Program's source code as you
+receive it, in any medium, provided that you conspicuously and
+appropriately publish on each copy an appropriate copyright notice;
+keep intact all notices stating that this License and any
+non-permissive terms added in accord with section 7 apply to the code;
+keep intact all notices of the absence of any warranty; and give all
+recipients a copy of this License along with the Program.
+
+ You may charge any price or no price for each copy that you convey,
+and you may offer support or warranty protection for a fee.
+
+ 5. Conveying Modified Source Versions.
+
+ You may convey a work based on the Program, or the modifications to
+produce it from the Program, in the form of source code under the
+terms of section 4, provided that you also meet all of these conditions:
+
+ a) The work must carry prominent notices stating that you modified
+ it, and giving a relevant date.
+
+ b) The work must carry prominent notices stating that it is
+ released under this License and any conditions added under section
+ 7. This requirement modifies the requirement in section 4 to
+ "keep intact all notices".
+
+ c) You must license the entire work, as a whole, under this
+ License to anyone who comes into possession of a copy. This
+ License will therefore apply, along with any applicable section 7
+ additional terms, to the whole of the work, and all its parts,
+ regardless of how they are packaged. This License gives no
+ permission to license the work in any other way, but it does not
+ invalidate such permission if you have separately received it.
+
+ d) If the work has interactive user interfaces, each must display
+ Appropriate Legal Notices; however, if the Program has interactive
+ interfaces that do not display Appropriate Legal Notices, your
+ work need not make them do so.
+
+ A compilation of a covered work with other separate and independent
+works, which are not by their nature extensions of the covered work,
+and which are not combined with it such as to form a larger program,
+in or on a volume of a storage or distribution medium, is called an
+"aggregate" if the compilation and its resulting copyright are not
+used to limit the access or legal rights of the compilation's users
+beyond what the individual works permit. Inclusion of a covered work
+in an aggregate does not cause this License to apply to the other
+parts of the aggregate.
+
+ 6. Conveying Non-Source Forms.
+
+ You may convey a covered work in object code form under the terms
+of sections 4 and 5, provided that you also convey the
+machine-readable Corresponding Source under the terms of this License,
+in one of these ways:
+
+ a) Convey the object code in, or embodied in, a physical product
+ (including a physical distribution medium), accompanied by the
+ Corresponding Source fixed on a durable physical medium
+ customarily used for software interchange.
+
+ b) Convey the object code in, or embodied in, a physical product
+ (including a physical distribution medium), accompanied by a
+ written offer, valid for at least three years and valid for as
+ long as you offer spare parts or customer support for that product
+ model, to give anyone who possesses the object code either (1) a
+ copy of the Corresponding Source for all the software in the
+ product that is covered by this License, on a durable physical
+ medium customarily used for software interchange, for a price no
+ more than your reasonable cost of physically performing this
+ conveying of source, or (2) access to copy the
+ Corresponding Source from a network server at no charge.
+
+ c) Convey individual copies of the object code with a copy of the
+ written offer to provide the Corresponding Source. This
+ alternative is allowed only occasionally and noncommercially, and
+ only if you received the object code with such an offer, in accord
+ with subsection 6b.
+
+ d) Convey the object code by offering access from a designated
+ place (gratis or for a charge), and offer equivalent access to the
+ Corresponding Source in the same way through the same place at no
+ further charge. You need not require recipients to copy the
+ Corresponding Source along with the object code. If the place to
+ copy the object code is a network server, the Corresponding Source
+ may be on a different server (operated by you or a third party)
+ that supports equivalent copying facilities, provided you maintain
+ clear directions next to the object code saying where to find the
+ Corresponding Source. Regardless of what server hosts the
+ Corresponding Source, you remain obligated to ensure that it is
+ available for as long as needed to satisfy these requirements.
+
+ e) Convey the object code using peer-to-peer transmission, provided
+ you inform other peers where the object code and Corresponding
+ Source of the work are being offered to the general public at no
+ charge under subsection 6d.
+
+ A separable portion of the object code, whose source code is excluded
+from the Corresponding Source as a System Library, need not be
+included in conveying the object code work.
+
+ A "User Product" is either (1) a "consumer product", which means any
+tangible personal property which is normally used for personal, family,
+or household purposes, or (2) anything designed or sold for incorporation
+into a dwelling. In determining whether a product is a consumer product,
+doubtful cases shall be resolved in favor of coverage. For a particular
+product received by a particular user, "normally used" refers to a
+typical or common use of that class of product, regardless of the status
+of the particular user or of the way in which the particular user
+actually uses, or expects or is expected to use, the product. A product
+is a consumer product regardless of whether the product has substantial
+commercial, industrial or non-consumer uses, unless such uses represent
+the only significant mode of use of the product.
+
+ "Installation Information" for a User Product means any methods,
+procedures, authorization keys, or other information required to install
+and execute modified versions of a covered work in that User Product from
+a modified version of its Corresponding Source. The information must
+suffice to ensure that the continued functioning of the modified object
+code is in no case prevented or interfered with solely because
+modification has been made.
+
+ If you convey an object code work under this section in, or with, or
+specifically for use in, a User Product, and the conveying occurs as
+part of a transaction in which the right of possession and use of the
+User Product is transferred to the recipient in perpetuity or for a
+fixed term (regardless of how the transaction is characterized), the
+Corresponding Source conveyed under this section must be accompanied
+by the Installation Information. But this requirement does not apply
+if neither you nor any third party retains the ability to install
+modified object code on the User Product (for example, the work has
+been installed in ROM).
+
+ The requirement to provide Installation Information does not include a
+requirement to continue to provide support service, warranty, or updates
+for a work that has been modified or installed by the recipient, or for
+the User Product in which it has been modified or installed. Access to a
+network may be denied when the modification itself materially and
+adversely affects the operation of the network or violates the rules and
+protocols for communication across the network.
+
+ Corresponding Source conveyed, and Installation Information provided,
+in accord with this section must be in a format that is publicly
+documented (and with an implementation available to the public in
+source code form), and must require no special password or key for
+unpacking, reading or copying.
+
+ 7. Additional Terms.
+
+ "Additional permissions" are terms that supplement the terms of this
+License by making exceptions from one or more of its conditions.
+Additional permissions that are applicable to the entire Program shall
+be treated as though they were included in this License, to the extent
+that they are valid under applicable law. If additional permissions
+apply only to part of the Program, that part may be used separately
+under those permissions, but the entire Program remains governed by
+this License without regard to the additional permissions.
+
+ When you convey a copy of a covered work, you may at your option
+remove any additional permissions from that copy, or from any part of
+it. (Additional permissions may be written to require their own
+removal in certain cases when you modify the work.) You may place
+additional permissions on material, added by you to a covered work,
+for which you have or can give appropriate copyright permission.
+
+ Notwithstanding any other provision of this License, for material you
+add to a covered work, you may (if authorized by the copyright holders of
+that material) supplement the terms of this License with terms:
+
+ a) Disclaiming warranty or limiting liability differently from the
+ terms of sections 15 and 16 of this License; or
+
+ b) Requiring preservation of specified reasonable legal notices or
+ author attributions in that material or in the Appropriate Legal
+ Notices displayed by works containing it; or
+
+ c) Prohibiting misrepresentation of the origin of that material, or
+ requiring that modified versions of such material be marked in
+ reasonable ways as different from the original version; or
+
+ d) Limiting the use for publicity purposes of names of licensors or
+ authors of the material; or
+
+ e) Declining to grant rights under trademark law for use of some
+ trade names, trademarks, or service marks; or
+
+ f) Requiring indemnification of licensors and authors of that
+ material by anyone who conveys the material (or modified versions of
+ it) with contractual assumptions of liability to the recipient, for
+ any liability that these contractual assumptions directly impose on
+ those licensors and authors.
+
+ All other non-permissive additional terms are considered "further
+restrictions" within the meaning of section 10. If the Program as you
+received it, or any part of it, contains a notice stating that it is
+governed by this License along with a term that is a further
+restriction, you may remove that term. If a license document contains
+a further restriction but permits relicensing or conveying under this
+License, you may add to a covered work material governed by the terms
+of that license document, provided that the further restriction does
+not survive such relicensing or conveying.
+
+ If you add terms to a covered work in accord with this section, you
+must place, in the relevant source files, a statement of the
+additional terms that apply to those files, or a notice indicating
+where to find the applicable terms.
+
+ Additional terms, permissive or non-permissive, may be stated in the
+form of a separately written license, or stated as exceptions;
+the above requirements apply either way.
+
+ 8. Termination.
+
+ You may not propagate or modify a covered work except as expressly
+provided under this License. Any attempt otherwise to propagate or
+modify it is void, and will automatically terminate your rights under
+this License (including any patent licenses granted under the third
+paragraph of section 11).
+
+ However, if you cease all violation of this License, then your
+license from a particular copyright holder is reinstated (a)
+provisionally, unless and until the copyright holder explicitly and
+finally terminates your license, and (b) permanently, if the copyright
+holder fails to notify you of the violation by some reasonable means
+prior to 60 days after the cessation.
+
+ Moreover, your license from a particular copyright holder is
+reinstated permanently if the copyright holder notifies you of the
+violation by some reasonable means, this is the first time you have
+received notice of violation of this License (for any work) from that
+copyright holder, and you cure the violation prior to 30 days after
+your receipt of the notice.
+
+ Termination of your rights under this section does not terminate the
+licenses of parties who have received copies or rights from you under
+this License. If your rights have been terminated and not permanently
+reinstated, you do not qualify to receive new licenses for the same
+material under section 10.
+
+ 9. Acceptance Not Required for Having Copies.
+
+ You are not required to accept this License in order to receive or
+run a copy of the Program. Ancillary propagation of a covered work
+occurring solely as a consequence of using peer-to-peer transmission
+to receive a copy likewise does not require acceptance. However,
+nothing other than this License grants you permission to propagate or
+modify any covered work. These actions infringe copyright if you do
+not accept this License. Therefore, by modifying or propagating a
+covered work, you indicate your acceptance of this License to do so.
+
+ 10. Automatic Licensing of Downstream Recipients.
+
+ Each time you convey a covered work, the recipient automatically
+receives a license from the original licensors, to run, modify and
+propagate that work, subject to this License. You are not responsible
+for enforcing compliance by third parties with this License.
+
+ An "entity transaction" is a transaction transferring control of an
+organization, or substantially all assets of one, or subdividing an
+organization, or merging organizations. If propagation of a covered
+work results from an entity transaction, each party to that
+transaction who receives a copy of the work also receives whatever
+licenses to the work the party's predecessor in interest had or could
+give under the previous paragraph, plus a right to possession of the
+Corresponding Source of the work from the predecessor in interest, if
+the predecessor has it or can get it with reasonable efforts.
+
+ You may not impose any further restrictions on the exercise of the
+rights granted or affirmed under this License. For example, you may
+not impose a license fee, royalty, or other charge for exercise of
+rights granted under this License, and you may not initiate litigation
+(including a cross-claim or counterclaim in a lawsuit) alleging that
+any patent claim is infringed by making, using, selling, offering for
+sale, or importing the Program or any portion of it.
+
+ 11. Patents.
+
+ A "contributor" is a copyright holder who authorizes use under this
+License of the Program or a work on which the Program is based. The
+work thus licensed is called the contributor's "contributor version".
+
+ A contributor's "essential patent claims" are all patent claims
+owned or controlled by the contributor, whether already acquired or
+hereafter acquired, that would be infringed by some manner, permitted
+by this License, of making, using, or selling its contributor version,
+but do not include claims that would be infringed only as a
+consequence of further modification of the contributor version. For
+purposes of this definition, "control" includes the right to grant
+patent sublicenses in a manner consistent with the requirements of
+this License.
+
+ Each contributor grants you a non-exclusive, worldwide, royalty-free
+patent license under the contributor's essential patent claims, to
+make, use, sell, offer for sale, import and otherwise run, modify and
+propagate the contents of its contributor version.
+
+ In the following three paragraphs, a "patent license" is any express
+agreement or commitment, however denominated, not to enforce a patent
+(such as an express permission to practice a patent or covenant not to
+sue for patent infringement). To "grant" such a patent license to a
+party means to make such an agreement or commitment not to enforce a
+patent against the party.
+
+ If you convey a covered work, knowingly relying on a patent license,
+and the Corresponding Source of the work is not available for anyone
+to copy, free of charge and under the terms of this License, through a
+publicly available network server or other readily accessible means,
+then you must either (1) cause the Corresponding Source to be so
+available, or (2) arrange to deprive yourself of the benefit of the
+patent license for this particular work, or (3) arrange, in a manner
+consistent with the requirements of this License, to extend the patent
+license to downstream recipients. "Knowingly relying" means you have
+actual knowledge that, but for the patent license, your conveying the
+covered work in a country, or your recipient's use of the covered work
+in a country, would infringe one or more identifiable patents in that
+country that you have reason to believe are valid.
+
+ If, pursuant to or in connection with a single transaction or
+arrangement, you convey, or propagate by procuring conveyance of, a
+covered work, and grant a patent license to some of the parties
+receiving the covered work authorizing them to use, propagate, modify
+or convey a specific copy of the covered work, then the patent license
+you grant is automatically extended to all recipients of the covered
+work and works based on it.
+
+ A patent license is "discriminatory" if it does not include within
+the scope of its coverage, prohibits the exercise of, or is
+conditioned on the non-exercise of one or more of the rights that are
+specifically granted under this License. You may not convey a covered
+work if you are a party to an arrangement with a third party that is
+in the business of distributing software, under which you make payment
+to the third party based on the extent of your activity of conveying
+the work, and under which the third party grants, to any of the
+parties who would receive the covered work from you, a discriminatory
+patent license (a) in connection with copies of the covered work
+conveyed by you (or copies made from those copies), or (b) primarily
+for and in connection with specific products or compilations that
+contain the covered work, unless you entered into that arrangement,
+or that patent license was granted, prior to 28 March 2007.
+
+ Nothing in this License shall be construed as excluding or limiting
+any implied license or other defenses to infringement that may
+otherwise be available to you under applicable patent law.
+
+ 12. No Surrender of Others' Freedom.
+
+ If conditions are imposed on you (whether by court order, agreement or
+otherwise) that contradict the conditions of this License, they do not
+excuse you from the conditions of this License. If you cannot convey a
+covered work so as to satisfy simultaneously your obligations under this
+License and any other pertinent obligations, then as a consequence you may
+not convey it at all. For example, if you agree to terms that obligate you
+to collect a royalty for further conveying from those to whom you convey
+the Program, the only way you could satisfy both those terms and this
+License would be to refrain entirely from conveying the Program.
+
+ 13. Use with the GNU Affero General Public License.
+
+ Notwithstanding any other provision of this License, you have
+permission to link or combine any covered work with a work licensed
+under version 3 of the GNU Affero General Public License into a single
+combined work, and to convey the resulting work. The terms of this
+License will continue to apply to the part which is the covered work,
+but the special requirements of the GNU Affero General Public License,
+section 13, concerning interaction through a network will apply to the
+combination as such.
+
+ 14. Revised Versions of this License.
+
+ The Free Software Foundation may publish revised and/or new versions of
+the GNU General Public License from time to time. Such new versions will
+be similar in spirit to the present version, but may differ in detail to
+address new problems or concerns.
+
+ Each version is given a distinguishing version number. If the
+Program specifies that a certain numbered version of the GNU General
+Public License "or any later version" applies to it, you have the
+option of following the terms and conditions either of that numbered
+version or of any later version published by the Free Software
+Foundation. If the Program does not specify a version number of the
+GNU General Public License, you may choose any version ever published
+by the Free Software Foundation.
+
+ If the Program specifies that a proxy can decide which future
+versions of the GNU General Public License can be used, that proxy's
+public statement of acceptance of a version permanently authorizes you
+to choose that version for the Program.
+
+ Later license versions may give you additional or different
+permissions. However, no additional obligations are imposed on any
+author or copyright holder as a result of your choosing to follow a
+later version.
+
+ 15. Disclaimer of Warranty.
+
+ THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY
+APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT
+HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY
+OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,
+THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
+PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM
+IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF
+ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
+
+ 16. Limitation of Liability.
+
+ IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
+WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS
+THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY
+GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE
+USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF
+DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD
+PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),
+EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF
+SUCH DAMAGES.
+
+ 17. Interpretation of Sections 15 and 16.
+
+ If the disclaimer of warranty and limitation of liability provided
+above cannot be given local legal effect according to their terms,
+reviewing courts shall apply local law that most closely approximates
+an absolute waiver of all civil liability in connection with the
+Program, unless a warranty or assumption of liability accompanies a
+copy of the Program in return for a fee.
+
+ END OF TERMS AND CONDITIONS
+
+ How to Apply These Terms to Your New Programs
+
+ If you develop a new program, and you want it to be of the greatest
+possible use to the public, the best way to achieve this is to make it
+free software which everyone can redistribute and change under these terms.
+
+ To do so, attach the following notices to the program. It is safest
+to attach them to the start of each source file to most effectively
+state the exclusion of warranty; and each file should have at least
+the "copyright" line and a pointer to where the full notice is found.
+
+
+ Copyright (C)
+
+ This program is free software: you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation, either version 3 of the License, or
+ (at your option) any later version.
+
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with this program. If not, see .
+
+Also add information on how to contact you by electronic and paper mail.
+
+ If the program does terminal interaction, make it output a short
+notice like this when it starts in an interactive mode:
+
+ Copyright (C)
+ This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
+ This is free software, and you are welcome to redistribute it
+ under certain conditions; type `show c' for details.
+
+The hypothetical commands `show w' and `show c' should show the appropriate
+parts of the General Public License. Of course, your program's commands
+might be different; for a GUI interface, you would use an "about box".
+
+ You should also get your employer (if you work as a programmer) or school,
+if any, to sign a "copyright disclaimer" for the program, if necessary.
+For more information on this, and how to apply and follow the GNU GPL, see
+.
+
+ The GNU General Public License does not permit incorporating your program
+into proprietary programs. If your program is a subroutine library, you
+may consider it more useful to permit linking proprietary applications with
+the library. If this is what you want to do, use the GNU Lesser General
+Public License instead of this License. But first, please read
+.
diff --git a/README.md b/README.md
new file mode 100644
index 0000000..269fe0e
--- /dev/null
+++ b/README.md
@@ -0,0 +1,30 @@
+# Sanic Telegram Bot [template]
+
+---
+## Run
+```shell
+cd sanic-telegram-bot
+# edit .env file
+docker-compose up --build
+```
+
+---
+## Translations
+### Adding new language
+1. Update translations keys list from code
+```shell
+touch messages.pot
+find app -name '*.py' -exec xgettext --keyword=translated -j -o messages.pot {} +
+```
+2. Move `messages.pot` to `locale//LC_MESSAGES/.po`
+3. Compil[requirements.txt](requirements.txt)e `.po` to `.mo`
+```shell
+msgfmt ru.po -o ru.mo
+```
+
+---
+## Log description
+### Sources
+1. [SQL] – MariaDB
+2. [User, options \] – User log
+3. [Bot, options \] – Telegram bot
diff --git a/alembic/README b/alembic/README
new file mode 100644
index 0000000..98e4f9c
--- /dev/null
+++ b/alembic/README
@@ -0,0 +1 @@
+Generic single-database configuration.
\ No newline at end of file
diff --git a/alembic/env.py b/alembic/env.py
new file mode 100644
index 0000000..b50e221
--- /dev/null
+++ b/alembic/env.py
@@ -0,0 +1,66 @@
+from logging.config import fileConfig
+
+from sqlalchemy import engine_from_config
+from sqlalchemy import pool
+
+from alembic import context
+
+config = context.config
+
+if config.config_file_name is not None:
+ fileConfig(config.config_file_name)
+
+from app.core.models import AlchemyBase
+target_metadata = AlchemyBase.metadata
+
+
+def run_migrations_offline() -> None:
+ """Run migrations in 'offline' mode.
+
+ This configures the context with just a URL
+ and not an Engine, though an Engine is acceptable
+ here as well. By skipping the Engine creation
+ we don't even need a DBAPI to be available.
+
+ Calls to context.execute() here emit the given string to the
+ script output.
+
+ """
+ url = config.get_main_option("sqlalchemy.url")
+ context.configure(
+ url=url,
+ target_metadata=target_metadata,
+ literal_binds=True,
+ dialect_opts={"paramstyle": "named"},
+ )
+
+ with context.begin_transaction():
+ context.run_migrations()
+
+
+def run_migrations_online() -> None:
+ """Run migrations in 'online' mode.
+
+ In this scenario we need to create an Engine
+ and associate a connection with the context.
+
+ """
+ connectable = engine_from_config(
+ config.get_section(config.config_ini_section, {}),
+ prefix="sqlalchemy.",
+ poolclass=pool.NullPool,
+ )
+
+ with connectable.connect() as connection:
+ context.configure(
+ connection=connection, target_metadata=target_metadata
+ )
+
+ with context.begin_transaction():
+ context.run_migrations()
+
+
+if context.is_offline_mode():
+ run_migrations_offline()
+else:
+ run_migrations_online()
diff --git a/alembic/script.py.mako b/alembic/script.py.mako
new file mode 100644
index 0000000..fbc4b07
--- /dev/null
+++ b/alembic/script.py.mako
@@ -0,0 +1,26 @@
+"""${message}
+
+Revision ID: ${up_revision}
+Revises: ${down_revision | comma,n}
+Create Date: ${create_date}
+
+"""
+from typing import Sequence, Union
+
+from alembic import op
+import sqlalchemy as sa
+${imports if imports else ""}
+
+# revision identifiers, used by Alembic.
+revision: str = ${repr(up_revision)}
+down_revision: Union[str, None] = ${repr(down_revision)}
+branch_labels: Union[str, Sequence[str], None] = ${repr(branch_labels)}
+depends_on: Union[str, Sequence[str], None] = ${repr(depends_on)}
+
+
+def upgrade() -> None:
+ ${upgrades if upgrades else "pass"}
+
+
+def downgrade() -> None:
+ ${downgrades if downgrades else "pass"}
diff --git a/alembic/versions/5c3d7b5ae3fb_add_rates_to_asset.py b/alembic/versions/5c3d7b5ae3fb_add_rates_to_asset.py
new file mode 100644
index 0000000..eff7c40
--- /dev/null
+++ b/alembic/versions/5c3d7b5ae3fb_add_rates_to_asset.py
@@ -0,0 +1,30 @@
+"""add rates to Asset
+
+Revision ID: 5c3d7b5ae3fb
+Revises:
+Create Date: 2024-02-16 15:59:08.740548
+
+"""
+from typing import Sequence, Union
+
+from alembic import op
+import sqlalchemy as sa
+
+
+# revision identifiers, used by Alembic.
+revision: str = '5c3d7b5ae3fb'
+down_revision: Union[str, None] = None
+branch_labels: Union[str, Sequence[str], None] = None
+depends_on: Union[str, Sequence[str], None] = None
+
+
+def upgrade() -> None:
+ # ### commands auto generated by Alembic - please adjust! ###
+ op.add_column('assets', sa.Column('rates', sa.JSON(), nullable=False))
+ # ### end Alembic commands ###
+
+
+def downgrade() -> None:
+ # ### commands auto generated by Alembic - please adjust! ###
+ op.drop_column('assets', 'rates')
+ # ### end Alembic commands ###
diff --git a/alembic/versions/9749eb810999_add_new_field.py b/alembic/versions/9749eb810999_add_new_field.py
new file mode 100644
index 0000000..4942057
--- /dev/null
+++ b/alembic/versions/9749eb810999_add_new_field.py
@@ -0,0 +1,30 @@
+"""add new field
+
+Revision ID: 9749eb810999
+Revises: 5c3d7b5ae3fb
+Create Date: 2024-02-16 16:14:11.380132
+
+"""
+from typing import Sequence, Union
+
+from alembic import op
+import sqlalchemy as sa
+
+
+# revision identifiers, used by Alembic.
+revision: str = '9749eb810999'
+down_revision: Union[str, None] = '5c3d7b5ae3fb'
+branch_labels: Union[str, Sequence[str], None] = None
+depends_on: Union[str, Sequence[str], None] = None
+
+
+def upgrade() -> None:
+ # ### commands auto generated by Alembic - please adjust! ###
+ op.add_column('wallet_connections', sa.Column('without_pk', sa.Boolean(), nullable=False))
+ # ### end Alembic commands ###
+
+
+def downgrade() -> None:
+ # ### commands auto generated by Alembic - please adjust! ###
+ op.drop_column('wallet_connections', 'without_pk')
+ # ### end Alembic commands ###
diff --git a/app/__main__.py b/app/__main__.py
new file mode 100644
index 0000000..07f9ec7
--- /dev/null
+++ b/app/__main__.py
@@ -0,0 +1,70 @@
+import traceback
+from asyncio import sleep
+from datetime import datetime
+
+from aiogram import Bot
+
+from app.api import app
+from app.bot import dp
+from app.core._config import SANIC_PORT, MYSQL_URI, TELEGRAM_API_KEY
+from app.core._utils.create_maria_tables import create_maria_tables
+from app.core.logger import make_log
+from app.core.models import Memory
+from app.core.storage import engine
+
+
+async def queue_daemon(app):
+ await sleep(3)
+
+ while True:
+ delayed_list = {k: v for k, v in app.ctx.memory._delayed_queue.items()}
+ for _execute_ts in delayed_list:
+ if _execute_ts <= datetime.now().timestamp():
+ del app.ctx.memory._delayed_queue[_execute_ts]
+ app.ctx.memory._execute_queue.append(delayed_list[_execute_ts])
+
+ await sleep(.7)
+
+
+async def execute_queue(app):
+ await create_maria_tables(engine)
+
+ telegram_bot_username = (await app.ctx.memory._telegram_bot.get_me()).username
+ make_log(None, f"Application normally started. HTTP port: {SANIC_PORT}")
+ make_log(None, f"Telegram bot: https://t.me/{telegram_bot_username}")
+ make_log(None, f"MariaDB host: {MYSQL_URI.split('@')[1].split('/')[0].replace('/', '')}")
+ while True:
+ try:
+ _cmd = app.ctx.memory._execute_queue.pop(0)
+ except IndexError:
+ await sleep(.05)
+ continue
+
+ _fn = _cmd.pop(0)
+ assert _fn
+ _args = _cmd.pop(0)
+ assert type(_args) is tuple
+ try:
+ _kwargs = _cmd.pop(0)
+ assert type(_kwargs) is dict
+ except IndexError:
+ _kwargs = {}
+
+ try:
+ make_log("Queue.execute", f"{_fn} {_args} {_kwargs}", level='debug')
+ await _fn(*_args, **_kwargs)
+ except BaseException as e:
+ make_log("Queue.execute", f"{_fn} {_args} {_kwargs} => Error: {e}" + '\n' + str(traceback.format_exc()))
+
+
+if __name__ == '__main__':
+ app.ctx.memory = Memory()
+ app.ctx.memory._telegram_bot = Bot(TELEGRAM_API_KEY)
+ dp._s_memory = app.ctx.memory
+ app.ctx.memory._app = app
+
+ app.add_task(execute_queue(app))
+ app.add_task(queue_daemon(app))
+ app.add_task(dp.start_polling(app.ctx.memory._telegram_bot))
+
+ app.run(host='0.0.0.0', port=SANIC_PORT)
diff --git a/app/api/__init__.py b/app/api/__init__.py
new file mode 100644
index 0000000..da68079
--- /dev/null
+++ b/app/api/__init__.py
@@ -0,0 +1,9 @@
+from sanic import Sanic
+
+app = Sanic(__name__)
+
+from app.api.routes._index import s_index
+from app.api.routes.tonconnect import s_api_tonconnect_manifest
+
+app.add_route(s_index, "/")
+app.add_route(s_api_tonconnect_manifest, "/api/tonconnect-manifest.json")
diff --git a/app/api/routes/_index.py b/app/api/routes/_index.py
new file mode 100644
index 0000000..47aaee6
--- /dev/null
+++ b/app/api/routes/_index.py
@@ -0,0 +1,7 @@
+from sanic import response
+
+
+async def s_index(request):
+ return response.text("OK")
+
+
diff --git a/app/api/routes/tonconnect.py b/app/api/routes/tonconnect.py
new file mode 100644
index 0000000..f43c6fa
--- /dev/null
+++ b/app/api/routes/tonconnect.py
@@ -0,0 +1,11 @@
+from sanic import response
+
+from app.core._config import PROJECT_HOST
+
+
+async def s_api_tonconnect_manifest(request):
+ return response.json({
+ "url": f"{PROJECT_HOST}/#from=tonconnect",
+ "name": f"{PROJECT_HOST}", # TODO: maybe edit
+ "iconUrl": "https://github.com/projscale/assets/blob/main/ton-connect.png?raw=true",
+ })
diff --git a/app/bot/__init__.py b/app/bot/__init__.py
new file mode 100644
index 0000000..f2641ce
--- /dev/null
+++ b/app/bot/__init__.py
@@ -0,0 +1,78 @@
+from datetime import datetime
+
+from aiogram import BaseMiddleware, Dispatcher
+from aiogram.fsm.storage.memory import MemoryStorage
+
+from app.bot.routers.index import main_router
+from app.core.logger import logger
+from app.core.models._telegram import Wrapped_CBotChat
+from app.core.models.user import User
+from app.core.storage import db_session
+
+dp = Dispatcher(storage=MemoryStorage())
+
+
+class UserDataMiddleware(BaseMiddleware):
+ async def __call__(self, handler, event, data):
+ update_body = event.message or event.callback_query
+ if not update_body:
+ return
+
+ if update_body.from_user.is_bot is True:
+ return
+
+ user_id = update_body.from_user.id
+ assert user_id >= 1
+ # TODO: maybe make users cache
+
+ with db_session(auto_commit=False) as session:
+ try:
+ user = session.query(User).filter_by(telegram_id=user_id).first()
+ except BaseException as e:
+ logger.error(f"Error when middleware getting user: {e}")
+ user = None
+
+ if user is None:
+ logger.debug(f"User {user_id} not found. Creating new user")
+ user = User(
+ telegram_id=user_id,
+ username=update_body.from_user.username,
+ lang_code='en',
+ last_use=datetime.now(),
+ meta=dict(first_name=update_body.from_user.first_name,
+ last_name=update_body.from_user.last_name, username=update_body.from_user.username,
+ language_code=update_body.from_user.language_code,
+ is_premium=update_body.from_user.is_premium),
+ created=datetime.now()
+ )
+ session.add(user)
+ session.commit()
+ else:
+ if user.username != update_body.from_user.username:
+ user.username = update_body.from_user.username
+
+ updated_meta_fields = {}
+ if user.meta.get('first_name') != update_body.from_user.first_name:
+ updated_meta_fields['first_name'] = update_body.from_user.first_name
+
+ if user.meta.get('last_name') != update_body.from_user.last_name:
+ updated_meta_fields['last_name'] = update_body.from_user.last_name
+
+ user.meta = {
+ **user.meta,
+ **updated_meta_fields
+ }
+
+ user.last_use = datetime.now()
+ session.commit()
+
+ data['user'] = user
+ data['db_session'] = session
+ data['chat_wrap'] = Wrapped_CBotChat(data['bot'], chat_id=user_id)
+ data['memory'] = dp._s_memory
+ result = await handler(event, data)
+ return result
+
+
+dp.update.outer_middleware(UserDataMiddleware())
+dp.include_router(main_router)
diff --git a/app/bot/routers/index.py b/app/bot/routers/index.py
new file mode 100644
index 0000000..d0852c1
--- /dev/null
+++ b/app/bot/routers/index.py
@@ -0,0 +1,54 @@
+import os
+import sys
+import traceback
+
+from aiogram import types, Router, F
+from aiogram.filters import Command
+
+from app.bot.routers.tonconnect import router as tonconnect_router
+from app.core._utils.tg_process_template import tg_process_template
+from app.core.logger import logger
+
+main_router = Router()
+
+
+async def t_home_menu(__msg, **extra):
+ memory, user, db_session, chat_wrap = extra['memory'], extra['user'], extra['db_session'], extra['chat_wrap']
+ if extra.get('state'):
+ await extra['state'].clear()
+
+ return await tg_process_template(
+ chat_wrap, user.translated('home_menu'), message_id=__msg.message.message_id if isinstance(__msg, types.CallbackQuery) else None
+ )
+
+
+main_router.message.register(t_home_menu, Command('start'))
+main_router.callback_query.register(t_home_menu, F.data == 'home')
+
+main_router.include_routers(tonconnect_router)
+
+closing_router = Router()
+
+
+@closing_router.message()
+async def t_index(message: types.Message, **extra):
+ return await message.answer(extra['user'].translated('error_unknownCommand'), parse_mode='html')
+
+main_router.include_routers(closing_router)
+
+
+@main_router.error()
+async def t_index_error(err_event: types.ErrorEvent, **extra):
+ try:
+ raise err_event.exception
+ except BaseException as e:
+ exc_type, exc_obj, exc_tb = sys.exc_info()
+
+ try:
+ filename = os.path.split(exc_tb.tb_frame.f_code.co_filename)[1]
+ except:
+ filename = None
+
+ logger.error(f"""Error: {e}
+-/ {exc_type} {exc_obj} {filename} {exc_tb.tb_frame.f_lineno}""")
+ traceback.print_tb(exc_tb)
diff --git a/app/bot/routers/tonconnect.py b/app/bot/routers/tonconnect.py
new file mode 100644
index 0000000..4dd8d7c
--- /dev/null
+++ b/app/bot/routers/tonconnect.py
@@ -0,0 +1,66 @@
+import json
+
+from aiogram import types, Router
+from aiogram.filters import Command
+
+from app.core._keyboards import get_inline_keyboard
+from app.core._utils.tg_process_template import tg_process_template
+from app.core.logger import make_log
+from app.core.models._blockchain.ton.connect import TonConnect, unpack_wallet_info
+
+router = Router()
+
+
+async def pause_ton_connection(ton_connect: TonConnect):
+ if ton_connect.connected:
+ ton_connect._sdk_client.pause_connection()
+
+
+async def t_tonconnect_dev_menu(message: types.Message, memory=None, user=None, db_session=None, chat_wrap=None, **extra):
+ try:
+ command_args = message.text.split(" ")[1:]
+ except BaseException as e:
+ command_args = []
+
+ make_log("TonConnect_DevMenu", f"Command args: {command_args}", level='info')
+ wallet_app_name = 'tonkeeper'
+ if len(command_args) > 0:
+ wallet_app_name = command_args[0].lower()
+
+ keyboard = []
+
+ ton_connect, ton_connection = TonConnect.by_user(db_session, user, callback_fn=())
+ await ton_connect.restore_connection()
+ make_log("TonConnect_DevMenu", f"SDK connected?: {ton_connect.connected}", level='info')
+ if not ton_connect.connected:
+ if ton_connection:
+ make_log("TonConnect_DevMenu", f"Invalidating old connection", level='debug')
+ ton_connection.invalidated = True
+ db_session.commit()
+
+ message_text = f"""Wallet is not connected
+
+Use /dev_tonconnect {wallet_app_name} for connect to wallet."""
+ connection_link = await ton_connect.new_connection(wallet_app_name)
+ ton_connect.connected
+ make_log("TonConnect_DevMenu", f"New connection link for {wallet_app_name}: {connection_link}", level='debug')
+ keyboard.append([
+ {
+ 'text': 'Connect',
+ 'url': connection_link
+ }
+ ])
+ else:
+ wallet_info_text = json.dumps(unpack_wallet_info(ton_connect._sdk_client._wallet), indent=4, ensure_ascii=False)
+ message_text = f"""Wallet is connected
+
+{wallet_info_text}"""
+
+ memory.add_task(pause_ton_connection, ton_connect, delay_s=60 * 3)
+
+ return await tg_process_template(
+ chat_wrap, message_text,
+ keyboard=get_inline_keyboard(keyboard) if keyboard else None
+ )
+
+router.message.register(t_tonconnect_dev_menu, Command('dev_tonconnect'))
diff --git a/app/core/__init__.py b/app/core/__init__.py
new file mode 100644
index 0000000..e69de29
diff --git a/app/core/_config.py b/app/core/_config.py
new file mode 100644
index 0000000..45ff929
--- /dev/null
+++ b/app/core/_config.py
@@ -0,0 +1,23 @@
+import os
+from datetime import datetime
+
+from dotenv import load_dotenv
+
+load_dotenv(dotenv_path='.env')
+
+PROJECT_HOST = os.getenv('PROJECT_HOST', 'http://127.0.0.1:8080')
+SANIC_PORT = int(os.getenv('SANIC_PORT', '8080'))
+
+TELEGRAM_API_KEY = os.environ.get('TELEGRAM_API_KEY')
+assert TELEGRAM_API_KEY, "Telegram API_KEY required"
+
+MYSQL_URI = os.environ['MYSQL_URI']
+MYSQL_DATABASE = os.environ['MYSQL_DATABASE']
+
+LOG_LEVEL = os.getenv('LOG_LEVEL', 'DEBUG')
+LOG_DIR = os.getenv('LOG_DIR', 'logs')
+if not os.path.exists(LOG_DIR):
+ os.mkdir(LOG_DIR)
+
+_now_str = datetime.now().strftime("%Y-%m-%d_%H-%M-%S")
+LOG_FILEPATH = f"{LOG_DIR}/{_now_str}.log"
diff --git a/app/core/_defaults.py b/app/core/_defaults.py
new file mode 100644
index 0000000..cfa54b4
--- /dev/null
+++ b/app/core/_defaults.py
@@ -0,0 +1,11 @@
+
+DEFAULT_ASSET_INITOBJ = {
+ 'symbol': 'USD',
+ 'name': 'US Dollar',
+ 'decimals': 6,
+ 'network': None,
+ 'address': None,
+ 'meta': {},
+}
+
+
diff --git a/app/core/_keyboards.py b/app/core/_keyboards.py
new file mode 100644
index 0000000..6a3774b
--- /dev/null
+++ b/app/core/_keyboards.py
@@ -0,0 +1,68 @@
+from aiogram import types
+
+
+def get_keyboard(rows, one_time_keyboard=True, **kwargs) -> types.KeyboardButton:
+ keyboard = types.ReplyKeyboardMarkup(
+ resize_keyboard=True, one_time_keyboard=one_time_keyboard, **kwargs
+ )
+ for row in rows:
+ keyboard.add(
+ *[
+ types.KeyboardButton(button)
+ for button in row
+ ]
+ )
+ return keyboard
+
+
+def get_inline_keyboard(rows, *args, **kwargs):
+ if not rows: return None
+
+ keyboard = []
+ for row in rows:
+ if not row:
+ continue
+
+ result_row = []
+ for _item in row:
+ if not _item:
+ continue
+
+ if isinstance(_item, dict):
+ result_row.append(
+ types.InlineKeyboardButton(
+ **{
+ _key: _value for _key, _value in _item.items()
+ if _value
+ }
+ )
+ )
+ else:
+ result_row.append(_item)
+
+ keyboard.append(result_row)
+
+ return types.InlineKeyboardMarkup(inline_keyboard=keyboard)
+
+
+def get_inline_query(items: list):
+ inline_items = []
+ for item in items:
+ inline_items.append(
+ types.InlineQueryResultArticle(
+ id=str(item.get('id', '0')),
+ title=item.get('title', ''),
+ input_message_content=types.InputTextMessageContent(
+ item.get('input_message_content', ''),
+ parse_mode='html',
+ disable_web_page_preview=True
+ ),
+ reply_markup=get_inline_keyboard(item.get('reply_markup')),
+ url=item.get('url'),
+ hide_url=item.get('hide_url'),
+ description=item.get('description'),
+ thumb_url=item.get('thumb_url'),
+ )
+ )
+
+ return inline_items
diff --git a/app/core/_utils/__init__.py b/app/core/_utils/__init__.py
new file mode 100644
index 0000000..ff60d2c
--- /dev/null
+++ b/app/core/_utils/__init__.py
@@ -0,0 +1 @@
+from app.core._utils.tg_process_template import tg_process_template
diff --git a/app/core/_utils/create_maria_tables.py b/app/core/_utils/create_maria_tables.py
new file mode 100644
index 0000000..16efde6
--- /dev/null
+++ b/app/core/_utils/create_maria_tables.py
@@ -0,0 +1,10 @@
+from app.core.models import Asset
+from app.core.models.base import AlchemyBase
+
+
+async def create_maria_tables(engine):
+ """Create all tables in the database."""
+ Asset()
+ AlchemyBase.metadata.create_all(engine)
+
+
diff --git a/app/core/_utils/tg_process_template.py b/app/core/_utils/tg_process_template.py
new file mode 100644
index 0000000..85d417d
--- /dev/null
+++ b/app/core/_utils/tg_process_template.py
@@ -0,0 +1,49 @@
+async def tg_process_template(
+ chat_wrap: 'Wrapped_CBot',
+ text, keyboard=None, message_id=None,
+ photo=None, video=None, document=None, **kwargs
+):
+ if (photo or video or document) and message_id:
+ await chat_wrap.delete_message(message_id)
+ message_id = None
+
+ if message_id:
+ m = await chat_wrap.edit_message(
+ message_id,
+ text,
+ reply_markup=keyboard,
+ **kwargs
+ )
+ if not (m is None):
+ return m
+
+ await chat_wrap.delete_message(message_id)
+
+ if photo:
+ return await chat_wrap.send_photo(
+ photo,
+ caption=text,
+ reply_markup=keyboard,
+ **kwargs
+ )
+ elif video:
+ return await chat_wrap.send_video(
+ video,
+ caption=text,
+ reply_markup=keyboard,
+ **kwargs
+ )
+ elif document:
+ return await chat_wrap.send_document(
+ document,
+ caption=text,
+ reply_markup=keyboard,
+ **kwargs
+ )
+ else:
+ return await chat_wrap.send_message(
+ text,
+ reply_markup=keyboard,
+ **kwargs
+ )
+
diff --git a/app/core/logger.py b/app/core/logger.py
new file mode 100644
index 0000000..374911a
--- /dev/null
+++ b/app/core/logger.py
@@ -0,0 +1,40 @@
+import logging
+import sys
+
+from app.core._config import LOG_LEVEL, LOG_FILEPATH
+
+LOG_LEVELS = {
+ 'DEBUG': logging.DEBUG,
+ 'INFO': logging.INFO,
+ 'WARNING': logging.WARNING,
+ 'ERROR': logging.ERROR
+}
+LOG_LEVEL = LOG_LEVELS[LOG_LEVEL]
+
+logger = logging.getLogger(__name__)
+logger.setLevel(logging.DEBUG)
+
+handler2 = logging.StreamHandler(sys.stdout)
+handler2.setLevel(LOG_LEVEL)
+handler2.setFormatter(
+ logging.Formatter('%(asctime)s | %(levelname)s | %(message)s')
+)
+logger.addHandler(handler2)
+
+handler3 = logging.FileHandler(LOG_FILEPATH)
+handler3.setLevel(logging.DEBUG)
+handler3.setFormatter(
+ logging.Formatter('%(asctime)s | %(levelname)s | %(message)s')
+)
+logger.addHandler(handler3)
+
+
+def make_log(issuer, message, *args, level='INFO', **kwargs):
+ assert level.upper() in LOG_LEVELS.keys(), f"Unknown log level"
+ _log = getattr(logger, level.lower())
+ log_buffer = f"[{issuer if not (issuer is None) else 'System'}] {message}"
+ if args:
+ log_buffer += f" | {args}"
+ if kwargs:
+ log_buffer += f" | {kwargs}"
+ _log(log_buffer)
diff --git a/app/core/models/__init__.py b/app/core/models/__init__.py
new file mode 100644
index 0000000..9e38f18
--- /dev/null
+++ b/app/core/models/__init__.py
@@ -0,0 +1,6 @@
+from app.core.models.asset import Asset
+from app.core.models.memory import Memory
+from app.core.models.transaction import UserBalance, InternalTransaction
+from app.core.models.user import User
+from app.core.models.wallet_connection import WalletConnection
+from app.core.models.base import AlchemyBase
diff --git a/app/core/models/_blockchain/__init__.py b/app/core/models/_blockchain/__init__.py
new file mode 100644
index 0000000..e69de29
diff --git a/app/core/models/_blockchain/ton/__init__.py b/app/core/models/_blockchain/ton/__init__.py
new file mode 100644
index 0000000..e69de29
diff --git a/app/core/models/_blockchain/ton/connect.py b/app/core/models/_blockchain/ton/connect.py
new file mode 100644
index 0000000..cf88715
--- /dev/null
+++ b/app/core/models/_blockchain/ton/connect.py
@@ -0,0 +1,152 @@
+import os
+from contextlib import asynccontextmanager
+from datetime import datetime
+from hashlib import sha256
+
+from pytonconnect import TonConnect as ExternalLib_TonConnect
+from pytonconnect.storage import DefaultStorage
+
+from app.core._config import PROJECT_HOST
+from app.core.logger import make_log
+from app.core.models.wallet_connection import WalletConnection
+
+TON_CONNECT_MANIFEST_URI = os.getenv("TON_CONNECT_MANIFEST_URI")
+
+
+def unpack_wallet_info(wallet_info) -> dict:
+ return {
+ 'provider': wallet_info.provider,
+ 'device': {
+ 'platform': wallet_info.device.platform,
+ 'app_name': wallet_info.device.app_name,
+ 'app_version': wallet_info.device.app_version,
+ 'max_protocol_version': wallet_info.device.max_protocol_version,
+ 'features': wallet_info.device.features
+ } if wallet_info.device else None,
+ 'account': {
+ 'address': wallet_info.account.address,
+ 'chain': wallet_info.account.chain,
+ 'wallet_state_init': wallet_info.account.wallet_state_init,
+ 'public_key': wallet_info.account.public_key,
+ } if wallet_info.account else None,
+ 'ton_proof': {
+ 'timestamp': wallet_info.ton_proof.timestamp,
+ 'domain_len': wallet_info.ton_proof.domain_len,
+ 'domain_val': wallet_info.ton_proof.domain_val,
+ 'payload': wallet_info.ton_proof.payload,
+ 'signature': wallet_info.ton_proof.signature,
+ } if wallet_info.ton_proof else None
+ }
+
+
+class TonConnect:
+ def __init__(self, callback_fn: tuple = None):
+ self._manifest_uri = TON_CONNECT_MANIFEST_URI
+ if not self._manifest_uri:
+ self._manifest_uri = f"{PROJECT_HOST}/api/tonconnect-manifest.json"
+
+ self._sdk_client = ExternalLib_TonConnect(
+ manifest_url=self._manifest_uri, storage=DefaultStorage()
+ )
+
+ def status_change_callback(status):
+ status = unpack_wallet_info(status)
+ make_log("TonConnect", f"Changed status (connected={self.connected}): {status}", level='debug')
+
+ if callback_fn:
+ callback_fn[0](self, status, *callback_fn[1:])
+
+ self.set_status_change_callback(status_change_callback)
+
+ async def new_connection(self, app_name: str):
+ wallets = self._sdk_client.get_wallets()
+ for wallet in wallets:
+ if wallet["app_name"] == app_name:
+ return await self._sdk_client.connect(wallet)
+
+ async def restore_connection(self):
+ return await self._sdk_client.restore_connection()
+
+ def pause_connection(self):
+ try:
+ self._sdk_client.pause_connection()
+ except BaseException as e:
+ make_log("pause_connection", e, level='error')
+
+ @asynccontextmanager
+ async def connection(self):
+ try:
+ yield None
+ finally:
+ self.pause_connection()
+
+ @property
+ def connected(self):
+ # make_log("is_connected", self._sdk_client._storage._cache)
+ return self._sdk_client.connected
+
+ @property
+ def connection_key(self):
+ return self._sdk_client._storage._cache.get(DefaultStorage.KEY_CONNECTION, None)
+ # return self._sdk_client._storage.get_item(DefaultStorage.KEY_CONNECTION, None)
+
+ def set_status_change_callback(self, callback):
+ self._sdk_client.on_status_change(callback)
+
+ @classmethod
+ def by_key(cls, connection_key: str, callback_fn: tuple = None):
+ ton_connect = cls(callback_fn=callback_fn)
+ ton_connect._sdk_client._storage._cache[DefaultStorage.KEY_CONNECTION] = connection_key
+ # ton_connect._sdk_client._storage.set_item(DefaultStorage.KEY_CONNECTION, connection_key)
+ # Immediately restore connection
+ return ton_connect
+
+ @classmethod
+ def by_user(cls, session, user, callback_fn: tuple = None):
+ def new_callback_fn(self, status, _callback_fn):
+ try:
+ if not session.query(
+ WalletConnection
+ ).filter(WalletConnection.connection_id == sha256(self.connection_key.encode()).hexdigest()) \
+ .count():
+ new_connection = WalletConnection(
+ user_id=user.id,
+ network='ton',
+ wallet_key=f"{status['device'].get('app_name', 'UNKNOWN_NAME')}=={status['device'].get('app_version', '1.0')}",
+ connection_id=sha256(self.connection_key.encode()).hexdigest(),
+ wallet_address=status['account']['address'],
+ keys={
+ 'connection_key': self.connection_key,
+ },
+ meta={
+ key: status[key] for key in status if status[key]
+ },
+ created=datetime.now(),
+ updated=datetime.now(),
+ invalidated=False
+ )
+ session.add(new_connection)
+ session.commit()
+ except BaseException as e:
+ make_log("TonConnect.save_connection", e, level='error')
+
+ if _callback_fn:
+ _callback_fn[0](self, status, *_callback_fn[1:])
+
+ ton_connect = cls(callback_fn=(new_callback_fn, callback_fn))
+ connections = (
+ session.query(WalletConnection).filter(
+ WalletConnection.user_id == user.id,
+ WalletConnection.invalidated == False,
+ WalletConnection.network == 'ton'
+ )
+ )
+ if connections.count() == 0:
+ return ton_connect, None
+
+ connection = connections.first()
+ ton_connect._sdk_client._storage._cache[DefaultStorage.KEY_CONNECTION] = connection.keys["connection_key"]
+ # ton_connect._sdk_client._storage.set_item(DefaultStorage.KEY_CONNECTION, bytes.fromhex(connection.keys["connection_key"]))
+ # Immediately restore connection
+ return ton_connect, connection
+
diff --git a/app/core/models/_telegram/__init__.py b/app/core/models/_telegram/__init__.py
new file mode 100644
index 0000000..ba3f0a3
--- /dev/null
+++ b/app/core/models/_telegram/__init__.py
@@ -0,0 +1 @@
+from .wrapped_bot import Wrapped_CBotChat
\ No newline at end of file
diff --git a/app/core/models/_telegram/wrapped_bot.py b/app/core/models/_telegram/wrapped_bot.py
new file mode 100644
index 0000000..485cad1
--- /dev/null
+++ b/app/core/models/_telegram/wrapped_bot.py
@@ -0,0 +1,129 @@
+from aiogram import Bot
+
+from app.core.logger import make_log
+
+
+class Wrapped_CBotChat:
+ def __init__(self, api_key: str, chat_id: int = None, **kwargs):
+ if isinstance(api_key, Bot):
+ self._bot_key = api_key.token
+ self._bot = api_key
+ elif type(api_key) is str:
+ self._bot_key = api_key
+ self._bot = Bot(token=api_key)
+ else:
+ raise TypeError(f'api_key must be Bot or str, not {type(api_key)}')
+
+ self._chat_id = chat_id
+ self.options = kwargs
+
+ def __repr__(self):
+ if self.options.get('cbot_id'):
+ return f'Bot, chat_id={self.options["cbot_id"]} ' + '\\'
+
+ return "Bot"
+
+ async def send_message(self, text: str, **kwargs):
+ try:
+ make_log(self, f"Send message to {self._chat_id}. Text len: {len(text)}", level='debug')
+ return await self._bot.send_message(
+ self._chat_id,
+ text,
+ parse_mode='html',
+ disable_web_page_preview=True,
+ **kwargs
+ )
+ except BaseException as e:
+ make_log(self, f"Error sending message to {self._chat_id}. Error: {e}", level='warning')
+ return None
+
+ async def edit_message(self, message_id, text, **kwargs):
+ try:
+ make_log(self, f"Edit message {self._chat_id}/{message_id}. Text len: {len(text)}", level='debug')
+ return await self._bot.edit_message_text(
+ text,
+ chat_id=self._chat_id,
+ message_id=message_id,
+ parse_mode='html',
+ disable_web_page_preview=True,
+ **kwargs
+ )
+ except Exception as e:
+ make_log(self, f"Error editing message {self._chat_id}/{message_id}. Error: {e}", level='warning')
+ if 'exactly the same as a current content' in f'{e}':
+ return True
+
+ return None
+
+ async def delete_message(self, message_id):
+ try:
+ make_log(self, f"Delete message {self._chat_id}/{message_id}", level='debug')
+ return await self._bot.delete_message(
+ self._chat_id,
+ message_id
+ )
+ except Exception as e:
+ make_log(self, f"Error deleting message {self._chat_id}/{message_id}. Error: {e}", level='warning')
+ return None
+
+ async def send_photo(self, file_id, **kwargs):
+ try:
+ make_log(self, f"Send photo to {self._chat_id}. File: {file_id}", level='debug')
+ return await self._bot.send_photo(
+ self._chat_id,
+ file_id,
+ **kwargs
+ )
+ except Exception as e:
+ make_log(self, f"Error sending photo to {self._chat_id}. Error: {e}", level='warning')
+ return None
+
+ async def send_document(self, file_id, **kwargs):
+ try:
+ make_log(self, f"Send document to {self._chat_id}. File: {file_id}", level='debug')
+ return await self._bot.send_document(
+ self._chat_id,
+ file_id,
+ **kwargs
+ )
+ except Exception as e:
+ make_log(self, f"Error sending document to {self._chat_id}. Error: {e}", level='warning')
+ return None
+
+ async def send_video(self, file_id, **kwargs):
+ try:
+ make_log(self, f"Send video to {self._chat_id}. File: {file_id}", level='debug')
+ return await self._bot.send_video(
+ self._chat_id,
+ file_id,
+ **kwargs
+ )
+ except Exception as e:
+ make_log(self, f"Error sending video to {self._chat_id}. Error: {e}", level='warning')
+ return None
+
+ async def copy_message(self, from_chat_id, message_id, **kwargs):
+ try:
+ make_log(self, f"Copy message from {from_chat_id}/{message_id} to {self._chat_id}", level='debug')
+ return await self._bot.copy_message(
+ self._chat_id,
+ from_chat_id,
+ message_id,
+ **kwargs
+ )
+ except Exception as e:
+ make_log(self, f"Error copying message from {from_chat_id}/{message_id} to {self._chat_id}. Error: {e}", level='warning')
+ return None
+
+ async def forward_message(self, from_chat_id, message_id, **kwargs):
+ try:
+ make_log(self, f"Forward message from {from_chat_id}/{message_id} to {self._chat_id}", level='debug')
+ return await self._bot.forward_message(
+ self._chat_id,
+ from_chat_id,
+ message_id,
+ **kwargs
+ )
+ except Exception as e:
+ make_log(self, f"Error forwarding message from {from_chat_id}/{message_id} to {self._chat_id}. Error: {e}", level='warning')
+ return None
diff --git a/app/core/models/asset.py b/app/core/models/asset.py
new file mode 100644
index 0000000..3cdbeea
--- /dev/null
+++ b/app/core/models/asset.py
@@ -0,0 +1,50 @@
+from sqlalchemy import Column, Integer, String, DateTime, JSON, Boolean
+from sqlalchemy.orm import relationship
+
+from app.core._defaults import DEFAULT_ASSET_INITOBJ
+from app.core.models.base import AlchemyBase
+
+
+class Asset(AlchemyBase):
+ __tablename__ = 'assets'
+
+ id = Column(Integer, autoincrement=True, primary_key=True)
+ symbol = Column(String(32), nullable=False)
+ name = Column(String(256), nullable=False)
+ decimals = Column(Integer, nullable=False)
+
+ network = Column(String(32), nullable=True)
+ address = Column(String(1024), nullable=True)
+ meta = Column(JSON, nullable=False, default={})
+ rates = Column(JSON, nullable=False, default={})
+
+ created = Column(DateTime, nullable=False, default=0)
+ is_active = Column(Boolean, nullable=False, default=True)
+
+ balances = relationship('UserBalance', back_populates='asset')
+ internal_transactions = relationship('InternalTransaction', back_populates='asset')
+
+ @classmethod
+ def init_table(cls, engine):
+ AlchemyBase.metadata.create_all(engine)
+
+ @classmethod
+ def find(cls, session, **kwargs):
+ if 'symbol' in kwargs:
+ kwargs['symbol'] = kwargs['symbol'].upper()
+
+ result = session.query(cls).filter_by(**kwargs)
+ results_count = result.count()
+ if results_count == 0:
+ any_count = session.query(cls).count()
+ if any_count == 0:
+ init_asset = cls(**DEFAULT_ASSET_INITOBJ)
+ session.add(init_asset)
+ session.commit()
+ return cls.find(session, **kwargs)
+
+ raise Exception(f"Asset not found: {kwargs}")
+ elif results_count == 1:
+ return result.first()
+ else:
+ raise Exception(f"Multiple assets found: {results_count}")
diff --git a/app/core/models/base.py b/app/core/models/base.py
new file mode 100644
index 0000000..f406660
--- /dev/null
+++ b/app/core/models/base.py
@@ -0,0 +1,3 @@
+from sqlalchemy.ext.declarative import declarative_base
+
+AlchemyBase = declarative_base()
diff --git a/app/core/models/memory.py b/app/core/models/memory.py
new file mode 100644
index 0000000..6929b7c
--- /dev/null
+++ b/app/core/models/memory.py
@@ -0,0 +1,50 @@
+import asyncio
+from contextlib import asynccontextmanager
+from datetime import datetime, timedelta
+
+from app.core.logger import make_log
+
+
+class Memory:
+ def __init__(self):
+ self._execute_queue = []
+ self._delayed_queue = {}
+
+ self.transactions_disabled = False
+
+ @asynccontextmanager
+ async def transaction(self, desc=""):
+ make_log("Memory.transaction", f"Starting transaction; {desc}", level='debug')
+ while self.transactions_disabled:
+ await asyncio.sleep(.2)
+
+ self.transactions_disabled = True
+ try:
+ yield None
+ except BaseException as e:
+ self.transactions_disabled = False
+ make_log("Memory.transaction", f"Transaction error: {e}", level='error')
+ raise e
+
+ self.transactions_disabled = False
+ make_log("Memory.transaction", f"Transaction finished; {desc}", level='debug')
+
+ def add_task(self, _fn, *args, **kwargs):
+ try:
+ if type(kwargs.get("delay_s")) in [int, float]:
+ kwargs['execute_ts'] = (datetime.now() + timedelta(seconds=kwargs.pop('delay_s'))).timestamp()
+
+ _execute_ts = kwargs.pop('execute_ts')
+ _execute_ts = int(_execute_ts)
+ assert _execute_ts > 0
+ while _execute_ts in self._delayed_queue:
+ _execute_ts += .01
+
+ self._delayed_queue[_execute_ts] = [_fn, args, kwargs]
+ except (KeyError, ValueError, AssertionError) as e:
+ if not ("execute_ts" in str(e)):
+ make_log("Queue.add_task", f"Error when adding task to memory: {e}", level='error')
+
+ self._execute_queue.append([_fn, args, kwargs])
+
+
diff --git a/app/core/models/transaction.py b/app/core/models/transaction.py
new file mode 100644
index 0000000..a369504
--- /dev/null
+++ b/app/core/models/transaction.py
@@ -0,0 +1,38 @@
+from sqlalchemy import Column, Integer, String, ForeignKey, DateTime, Boolean, Float
+from sqlalchemy.orm import relationship
+
+from .base import AlchemyBase
+
+
+class UserBalance(AlchemyBase):
+ __tablename__ = 'user_balances'
+
+ id = Column(Integer, autoincrement=True, primary_key=True)
+ user_id = Column(Integer, ForeignKey('users.id'), nullable=False)
+ asset_id = Column(Integer, ForeignKey('assets.id'), nullable=False)
+ balance = Column(Float, nullable=False, default=0)
+
+ updated = Column(DateTime, nullable=False, default=0)
+ created = Column(DateTime, nullable=False, default=0)
+
+ user = relationship('User', uselist=False, foreign_keys=[user_id], back_populates='balances')
+ asset = relationship('Asset', uselist=False, foreign_keys=[asset_id], back_populates='balances')
+
+
+class InternalTransaction(AlchemyBase):
+ __tablename__ = 'internal_transactions'
+
+ id = Column(Integer, autoincrement=True, primary_key=True)
+ user_id = Column(Integer, ForeignKey('users.id'), nullable=False)
+ asset_id = Column(Integer, ForeignKey('assets.id'), nullable=False)
+ amount = Column(Float, nullable=False)
+
+ is_spent = Column(Boolean, nullable=False) # transaction type
+ spent_transaction_id = Column(Integer, ForeignKey('internal_transactions.id'), nullable=True)
+ type = Column(String(256), nullable=False, default="NOT_SPECIFIED")
+
+ created = Column(DateTime, nullable=False, default=0)
+
+ user = relationship('User', uselist=False, back_populates='internal_transactions', foreign_keys=[user_id])
+ asset = relationship('Asset', uselist=False, foreign_keys=[asset_id])
+ spent_transaction = relationship('InternalTransaction', uselist=False, foreign_keys=[spent_transaction_id])
diff --git a/app/core/models/user/__init__.py b/app/core/models/user/__init__.py
new file mode 100644
index 0000000..42d7f00
--- /dev/null
+++ b/app/core/models/user/__init__.py
@@ -0,0 +1,29 @@
+from sqlalchemy import Column, Integer, String, BigInteger, DateTime, JSON
+from sqlalchemy.orm import relationship
+
+from app.core.translation import TranslationCore
+from ..base import AlchemyBase
+
+
+class User(AlchemyBase, TranslationCore):
+ LOCALE_DOMAIN = 'sanic_telegram_bot'
+
+ __tablename__ = 'users'
+ id = Column(Integer, autoincrement=True, primary_key=True)
+ telegram_id = Column(BigInteger, nullable=False)
+
+ username = Column(String(512), nullable=True)
+ lang_code = Column(String(8), nullable=False, default="en")
+ meta = Column(JSON, nullable=False, default={})
+
+ last_use = Column(DateTime, nullable=False, default=0)
+ created = Column(DateTime, nullable=False, default=0)
+
+ balances = relationship('UserBalance', back_populates='user')
+ internal_transactions = relationship('InternalTransaction', back_populates='user')
+ wallet_connections = relationship('WalletConnection', back_populates='user')
+
+ def __str__(self):
+ return f"User, {self.id}_{self.telegram_id} | Username: {self.username} " + '\\'
+
+
diff --git a/app/core/models/wallet_connection.py b/app/core/models/wallet_connection.py
new file mode 100644
index 0000000..54c3c4d
--- /dev/null
+++ b/app/core/models/wallet_connection.py
@@ -0,0 +1,27 @@
+from sqlalchemy import Column, Integer, String, ForeignKey, DateTime, JSON, Boolean
+from sqlalchemy.orm import relationship
+
+from .base import AlchemyBase
+
+
+class WalletConnection(AlchemyBase):
+ __tablename__ = 'wallet_connections'
+
+ id = Column(Integer, autoincrement=True, primary_key=True)
+ user_id = Column(Integer, ForeignKey('users.id'), nullable=False)
+ network = Column(String(32), nullable=False)
+ wallet_key = Column(String(256), nullable=False)
+ connection_id = Column(String(2048), nullable=False, unique=True)
+
+ wallet_address = Column(String(1024), nullable=False)
+
+ keys = Column(JSON, nullable=False, default={})
+ meta = Column(JSON, nullable=False, default={})
+
+ created = Column(DateTime, nullable=False, default=0)
+ updated = Column(DateTime, nullable=False, default=0)
+ invalidated = Column(Boolean, nullable=False, default=True)
+ without_pk = Column(Boolean, nullable=False, default=False)
+
+ user = relationship('User', uselist=False, back_populates='wallet_connections', foreign_keys=[user_id])
+
diff --git a/app/core/storage.py b/app/core/storage.py
new file mode 100644
index 0000000..87c40cd
--- /dev/null
+++ b/app/core/storage.py
@@ -0,0 +1,44 @@
+import time
+from contextlib import contextmanager
+
+from sqlalchemy import create_engine
+from sqlalchemy.orm import sessionmaker
+from sqlalchemy.sql import text
+
+from app.core._config import MYSQL_URI, MYSQL_DATABASE
+from app.core.logger import make_log
+
+engine = create_engine(MYSQL_URI, echo=True)
+Session = sessionmaker(bind=engine)
+
+
+database_initialized = False
+while not database_initialized:
+ try:
+ with Session() as session:
+ databases_list = session.execute(text("SHOW DATABASES;"))
+ databases_list = [row[0] for row in databases_list]
+ make_log("SQL", 'Database list: ' + str(databases_list), level='debug')
+ assert MYSQL_DATABASE in databases_list, 'Database not found'
+ database_initialized = True
+ except Exception as e:
+ make_log("SQL", 'MariaDB is not ready yet: ' + str(e), level='debug')
+ time.sleep(1)
+
+engine = create_engine(f"{MYSQL_URI}/{MYSQL_DATABASE}")
+Session = sessionmaker(bind=engine)
+
+
+@contextmanager
+def db_session(auto_commit=False):
+ _session = Session()
+ try:
+ yield _session
+ if auto_commit is True:
+ _session.commit()
+ except BaseException as e:
+ _session.rollback()
+ raise e
+ finally:
+ _session.close()
+
diff --git a/app/core/transactions.py b/app/core/transactions.py
new file mode 100644
index 0000000..0a08a59
--- /dev/null
+++ b/app/core/transactions.py
@@ -0,0 +1,76 @@
+from datetime import datetime
+
+from app.core.logger import make_log
+from app.core.models import Memory, User, UserBalance, Asset, InternalTransaction
+from app.core.storage import db_session
+
+
+def get_user_balance(session, user: User, asset: Asset) -> UserBalance:
+ assert user, "No user"
+ assert asset, "No asset"
+ result = session.query(UserBalance).filter(
+ UserBalance.user_id == user.id,
+ UserBalance.asset_id == asset.id
+ )
+ results_count = result.count()
+ if results_count == 0:
+ user_balance = UserBalance(
+ user_id=user.id,
+ asset_id=asset.id,
+ balance=0,
+ created=datetime.now(),
+ )
+ session.add(user_balance)
+ session.commit()
+ return get_user_balance(session, user, asset)
+ elif results_count == 1:
+ return result.first()
+ else:
+ raise Exception(f"Multiple user balances found: {results_count}")
+
+
+async def make_internal_transaction(
+ memory: Memory, user_id: int, asset_id: int, amount: float,
+ is_spent: bool, type: str = "NOT_SPECIFIED", spent_transaction_id: int = None
+) -> InternalTransaction:
+ amount = float(amount)
+ is_spent = bool(is_spent)
+ type = str(type)[:256]
+ if amount < 0:
+ if not is_spent:
+ raise Exception(f"Invalid is_spent: {is_spent}, amount: {amount}")
+ elif amount > 0:
+ if is_spent:
+ raise Exception(f"Invalid is_spent: {is_spent}, amount: {amount}")
+ else:
+ raise Exception(f"Invalid amount: {amount}")
+
+ abs_amount = abs(amount)
+ with db_session(auto_commit=False) as session:
+ async with memory.transaction():
+ user = session.query(User).filter_by(id=user_id).first()
+ assert user, "No user"
+ asset = session.query(Asset).filter_by(id=asset_id).first()
+ assert asset, "No asset"
+ user_balance = get_user_balance(session, user, asset)
+ assert user_balance, "No user balance"
+ if is_spent is True:
+ if abs_amount > user_balance.balance:
+ raise Exception(f"Insufficient balance: {user_balance.balance} < {abs_amount}")
+
+ user_balance.balance = float(user_balance.balance) + amount
+ user_balance.updated = datetime.now()
+
+ internal_transaction = InternalTransaction(
+ user_id=user.id,
+ asset_id=asset.id,
+ amount=abs_amount,
+ is_spent=is_spent,
+ type=type,
+ spent_transaction_id=spent_transaction_id,
+ created=datetime.now(),
+ )
+ session.add(internal_transaction)
+ session.commit()
+
+ make_log(user, f"Made internal transaction: {'-' if is_spent else ''}{abs_amount} {asset.symbol}, type: {type}")
diff --git a/app/core/translation.py b/app/core/translation.py
new file mode 100644
index 0000000..022a909
--- /dev/null
+++ b/app/core/translation.py
@@ -0,0 +1,28 @@
+import gettext
+
+from app.core.logger import make_log
+
+
+def get_translator(lang_code: str, domain='sanic_telegram_bot'):
+ localedir = 'locale'
+
+ try:
+ return gettext.translation(domain, localedir, languages=[lang_code])
+ except FileNotFoundError:
+ return get_translator('en', domain=domain)
+
+
+class TranslationCore:
+ @property
+ def translator(self):
+ return get_translator(self.lang_code or 'en', domain=self.LOCALE_DOMAIN)
+
+ def translated(self, message, **format_kwargs):
+ try:
+ message = self.translator.gettext(message)
+ if format_kwargs:
+ message = message.format(**format_kwargs)
+ except BaseException as e:
+ make_log("User.translated", f"Error translating message ({self.lang_code}): {e}")
+
+ return message
diff --git a/docker-compose.yml b/docker-compose.yml
new file mode 100644
index 0000000..e801eb6
--- /dev/null
+++ b/docker-compose.yml
@@ -0,0 +1,30 @@
+version: '3'
+services:
+ maria_db:
+ image: mariadb:11.2
+ ports:
+ - "3307:3306"
+ env_file:
+ - .env
+ volumes:
+ - ./sqlStorage:/var/lib/mysql
+ healthcheck:
+ test: [ "CMD", "healthcheck.sh", "--connect", "--innodb_initialized" ]
+ interval: 10s
+ timeout: 5s
+ retries: 3
+
+ app:
+ build:
+ context: .
+ dockerfile: Dockerfile
+ command: python -m app
+ env_file:
+ - .env
+ links:
+ - maria_db
+ volumes:
+ - ./logs:/app/logs
+ depends_on:
+ maria_db:
+ condition: service_healthy
diff --git a/env.example b/env.example
new file mode 100644
index 0000000..bd383ad
--- /dev/null
+++ b/env.example
@@ -0,0 +1,5 @@
+SANIC_PORT=8080
+TELEGRAM_API_KEY=Paste your telegram api key from @BotFather here
+MYSQL_URI=mysql+pymysql://user:password@maria_db:3306
+MYSQL_ROOT_PASSWORD=playground
+MYSQL_DATABASE=bot_database
diff --git a/locale/en/LC_MESSAGES/sanic_telegram_bot.mo b/locale/en/LC_MESSAGES/sanic_telegram_bot.mo
new file mode 100644
index 0000000000000000000000000000000000000000..9a4c0b66db958f68042d4d71add00481f0345b7b
GIT binary patch
literal 441
zcmYL_O-{ow5QW3vf-Dh&4GZs)3rH*~Q&3Igwh{TM(zFt6ib+feGuubPgNC{x$~kbF{^}ZoRL}@l@!#RFa?(?cLD(Fig6;ArJcbZH-eyhMiU&y*rR9|lh8kXh$H3(yf!%1
zT-I}LlqRS@2?7++kf9C>sULKy=Ot`Bz5%H$8eRyT3SJQu&}cBRPC7x*otG`8i;V^x
zgnr02wl7-eZcj-gBz*U|06#{2n6t&4m+}f_FI?BcTu;(IZf|tf*0a!<$xP*?EC^~p
WmBw|Ljg6pnZYWy^H-zBOD!6|qdUl}z
literal 0
HcmV?d00001
diff --git a/locale/en/LC_MESSAGES/sanic_telegram_bot.po b/locale/en/LC_MESSAGES/sanic_telegram_bot.po
new file mode 100644
index 0000000..52e1e0d
--- /dev/null
+++ b/locale/en/LC_MESSAGES/sanic_telegram_bot.po
@@ -0,0 +1,26 @@
+# SOME DESCRIPTIVE TITLE.
+# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
+# This file is distributed under the same license as the PACKAGE package.
+# FIRST AUTHOR , YEAR.
+#
+#, fuzzy
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2024-01-26 00:20+0300\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME \n"
+"Language-Team: LANGUAGE \n"
+"Language: \n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+
+#: app/bot/routers/index.py:34
+msgid "home_menu"
+msgstr "Home menu"
+
+#: app/bot/routers/index.py:57
+msgid "error_unknownCommand"
+msgstr "Error: unknown command"
diff --git a/mariadb-healthcheck.sh b/mariadb-healthcheck.sh
new file mode 100644
index 0000000..3467444
--- /dev/null
+++ b/mariadb-healthcheck.sh
@@ -0,0 +1,353 @@
+#!/bin/bash
+#
+# Healthcheck script for MariaDB
+#
+# Runs various tests on the MariaDB server to check its health. Pass the tests
+# to run as arguments. If all tests succeed, the server is considered healthy,
+# otherwise it's not.
+#
+# Arguments are processed in strict order. Set replication_* options before
+# the --replication option. This allows a different set of replication checks
+# on different connections.
+#
+# --su{=|-mysql} is option to run the healthcheck as a different unix user.
+# Useful if mysql@localhost user exists with unix socket authentication
+# Using this option disregards previous options set, so should usually be the
+# first option.
+#
+# Some tests require SQL privileges.
+#
+# TEST MINIMUM GRANTS REQUIRED
+# connect none*
+# innodb_initialized USAGE
+# innodb_buffer_pool_loaded USAGE
+# galera_online USAGE
+# galera_ready USAGE
+# replication REPLICATION_CLIENT (<10.5)or REPLICA MONITOR (10.5+)
+# mariadbupgrade none, however unix user permissions on datadir
+#
+# The SQL user used is the default for the mysql client. This can be the unix user
+# if no user(or password) is set in the [mariadb-client] section of a configuration
+# file. --defaults-{file,extra-file,group-suffix} can specify a file/configuration
+# different from elsewhere.
+#
+# Note * though denied error message will result in error log without
+# any permissions.
+
+set -eo pipefail
+
+_process_sql()
+{
+ mysql ${nodefaults:+--no-defaults} \
+ ${def['file']:+--defaults-file=${def['file']}} \
+ ${def['extra_file']:+--defaults-extra-file=${def['extra_file']}} \
+ ${def['group_suffix']:+--defaults-group-suffix=${def['group_suffix']}} \
+ -B "$@"
+}
+
+# TESTS
+
+
+# CONNECT
+#
+# Tests that a connection can be made over TCP, the final state
+# of the entrypoint and is listening. The authentication used
+# isn't tested.
+connect()
+{
+ set +e +o pipefail
+ # (on second extra_file)
+ # shellcheck disable=SC2086
+ mysql ${nodefaults:+--no-defaults} \
+ ${def['file']:+--defaults-file=${def['file']}} \
+ ${def['extra_file']:+--defaults-extra-file=${def['extra_file']}} \
+ ${def['group_suffix']:+--defaults-group-suffix=${def['group_suffix']}} \
+ -h localhost --protocol tcp -e 'select 1' 2>&1 \
+ | grep -qF "Can't connect"
+ local ret=${PIPESTATUS[1]}
+ set -eo pipefail
+ if (( "$ret" == 0 )); then
+ # grep Matched "Can't connect" so we fail
+ return 1
+ fi
+ return 0
+}
+
+# INNODB_INITIALIZED
+#
+# This tests that the crash recovery of InnoDB has completed
+# along with all the other things required to make it to a healthy
+# operational state. Note this may return true in the early
+# states of initialization. Use with a connect test to avoid
+# these false positives.
+innodb_initialized()
+{
+ local s
+ s=$(_process_sql --skip-column-names -e "select 1 from information_schema.ENGINES WHERE engine='innodb' AND support in ('YES', 'DEFAULT', 'ENABLED')")
+ [ "$s" == 1 ]
+}
+
+# INNODB_BUFFER_POOL_LOADED
+#
+# Tests the load of the innodb buffer pool as been complete
+# implies innodb_buffer_pool_load_at_startup=1 (default), or if
+# manually SET innodb_buffer_pool_load_now=1
+innodb_buffer_pool_loaded()
+{
+ local s
+ s=$(_process_sql --skip-column-names -e "select VARIABLE_VALUE from information_schema.GLOBAL_STATUS WHERE VARIABLE_NAME='Innodb_buffer_pool_load_status'")
+ if [[ $s =~ 'load completed' ]]; then
+ return 0
+ fi
+ return 1
+}
+
+# GALERA_ONLINE
+#
+# Tests that the galera node is in the SYNCed state
+galera_online()
+{
+ local s
+ s=$(_process_sql --skip-column-names -e "select VARIABLE_VALUE from information_schema.GLOBAL_STATUS WHERE VARIABLE_NAME='WSREP_LOCAL_STATE'")
+ # 4 from https://galeracluster.com/library/documentation/node-states.html#node-state-changes
+ # not https://xkcd.com/221/
+ if [[ $s -eq 4 ]]; then
+ return 0
+ fi
+ return 1
+}
+
+# GALERA_READY
+#
+# Tests that the Galera provider is ready.
+galera_ready()
+{
+ local s
+ s=$(_process_sql --skip-column-names -e "select VARIABLE_VALUE from information_schema.GLOBAL_STATUS WHERE VARIABLE_NAME='WSREP_READY'")
+ if [ "$s" = "ON" ]; then
+ return 0
+ fi
+ return 1
+}
+
+# REPLICATION
+#
+# Tests the replication has the required set of functions:
+# --replication_all -> Checks all replication sources
+# --replication_name=n -> sets the multisource connection name tested
+# --replication_io -> IO thread is running
+# --replication_sql -> SQL thread is running
+# --replication_seconds_behind_master=n -> less than or equal this seconds of delay
+# --replication_sql_remaining_delay=n -> less than or equal this seconds of remaining delay
+# (ref: https://mariadb.com/kb/en/delayed-replication/)
+replication()
+{
+ # SHOW REPLICA available 10.5+
+ # https://github.com/koalaman/shellcheck/issues/2383
+ # shellcheck disable=SC2016,SC2026
+ _process_sql -e "SHOW ${repl['all']:+all} REPLICA${repl['all']:+S} ${repl['name']:+'${repl['name']}'} STATUS\G" | \
+ {
+ # required for trim of leading space.
+ shopt -s extglob
+ # Row header
+ read -t 5 -r
+ # read timeout
+ [ $? -gt 128 ] && return 1
+ while IFS=":" read -t 1 -r n v; do
+ # Trim leading space
+ n=${n##+([[:space:]])}
+ # Leading space on all values by the \G format needs to be trimmed.
+ v=${v:1}
+ case "$n" in
+ Slave_IO_Running)
+ if [ -n "${repl['io']}" ] && [ "$v" = 'No' ]; then
+ return 1
+ fi
+ ;;
+ Slave_SQL_Running)
+ if [ -n "${repl['sql']}" ] && [ "$v" = 'No' ]; then
+ return 1
+ fi
+ ;;
+ Seconds_Behind_Master)
+ # A NULL value is the IO thread not running:
+ if [ -n "${repl['seconds_behind_master']}" ] &&
+ { [ "$v" = NULL ] ||
+ (( "${repl['seconds_behind_master']}" < "$v" )); }; then
+ return 1
+ fi
+ ;;
+ SQL_Remaining_Delay)
+ # Unlike Seconds_Behind_Master, sql_remaining_delay will hit NULL
+ # once replication is caught up - https://mariadb.com/kb/en/delayed-replication/
+ if [ -n "${repl['sql_remaining_delay']}" ] &&
+ [ "$v" != NULL ] &&
+ (( "${repl['sql_remaining_delay']}" < "$v" )); then
+ return 1
+ fi
+ ;;
+ esac
+ done
+ # read timeout
+ [ $? -gt 128 ] && return 1
+ return 0
+ }
+ # reachable in command not found(?)
+ # shellcheck disable=SC2317
+ return $?
+}
+
+# mariadbupgrade
+#
+# Test the lock on the file $datadir/mysql_upgrade_info
+# https://jira.mariadb.org/browse/MDEV-27068
+mariadbupgrade()
+{
+ local f="$datadir/mysql_upgrade_info"
+ if [ -r "$f" ]; then
+ flock --exclusive --nonblock -n 9 9<"$f"
+ return $?
+ fi
+ return 0
+}
+
+
+# MAIN
+
+if [ $# -eq 0 ]; then
+ echo "At least one argument required" >&2
+ exit 1
+fi
+
+#ENDOFSUBSTITUTIONS
+# Marks the end of mysql -> mariadb name changes in 10.6+
+# Global variables used by tests
+declare -A repl
+declare -A def
+nodefaults=
+datadir=/var/lib/mysql
+if [ -f $datadir/.my-healthcheck.cnf ]; then
+ def['extra_file']=$datadir/.my-healthcheck.cnf
+fi
+
+_repl_param_check()
+{
+ case "$1" in
+ seconds_behind_master) ;&
+ sql_remaining_delay)
+ if [ -z "${repl['io']}" ]; then
+ repl['io']=1
+ echo "Forcing --replication_io=1, $1 requires IO thread to be running" >&2
+ fi
+ ;;
+ all)
+ if [ -n "${repl['name']}" ]; then
+ unset 'repl[name]'
+ echo "Option --replication_all incompatible with specified source --replication_name, clearing replication_name" >&2
+ fi
+ ;;
+ name)
+ if [ -n "${repl['all']}" ]; then
+ unset 'repl[all]'
+ echo "Option --replication_name incompatible with --replication_all, clearing replication_all" >&2
+ fi
+ ;;
+ esac
+}
+
+_test_exists() {
+ declare -F "$1" > /dev/null
+ return $?
+}
+
+while [ $# -gt 0 ]; do
+ case "$1" in
+ --su=*)
+ u="${1#*=}"
+ shift
+ exec gosu "${u}" "${BASH_SOURCE[0]}" "$@"
+ ;;
+ --su)
+ shift
+ u=$1
+ shift
+ exec gosu "$u" "${BASH_SOURCE[0]}" "$@"
+ ;;
+ --su-mysql)
+ shift
+ exec gosu mysql "${BASH_SOURCE[0]}" "$@"
+ ;;
+ --replication_*=*)
+ # Change the n to what is between _ and = and make lower case
+ n=${1#*_}
+ n=${n%%=*}
+ n=${n,,*}
+ # v is after the =
+ v=${1#*=}
+ repl[$n]=$v
+ _repl_param_check "$n"
+ ;;
+ --replication_*)
+ # Without =, look for a non --option next as the value,
+ # otherwise treat it as an "enable", just equate to 1.
+ # Clearing option is possible with "--replication_X="
+ n=${1#*_}
+ n=${n,,*}
+ if [ "${2:0:2}" == '--' ]; then
+ repl[$n]=1
+ else
+ repl[$n]=$2
+ shift
+ fi
+ _repl_param_check "$n"
+ ;;
+ --datadir=*)
+ datadir=${1#*=}
+ ;;
+ --datadir)
+ shift
+ datadir=${1}
+ ;;
+ --no-defaults)
+ def=()
+ nodefaults=1
+ ;;
+ --defaults-file=*|--defaults-extra-file=*|--defaults-group-suffix=*)
+ n=${1:11} # length --defaults-
+ n=${n%%=*}
+ n=${n//-/_}
+ # v is after the =
+ v=${1#*=}
+ def[$n]=$v
+ nodefaults=
+ ;;
+ --defaults-file|--defaults-extra-file|--defaults-group-suffix)
+ n=${1:11} # length --defaults-
+ n=${n//-/_}
+ if [ "${2:0:2}" == '--' ]; then
+ def[$n]=""
+ else
+ def[$n]=$2
+ shift
+ fi
+ nodefaults=
+ ;;
+ --*)
+ test=${1#--}
+ ;;
+ *)
+ echo "Unknown healthcheck option $1" >&2
+ exit 1
+ esac
+ if [ -n "$test" ]; then
+ if ! _test_exists "$test" ; then
+ echo "healthcheck unknown option or test '$test'" >&2
+ exit 1
+ elif ! "$test"; then
+ echo "healthcheck $test failed" >&2
+ exit 1
+ fi
+ test=
+ fi
+ shift
+done
diff --git a/requirements.txt b/requirements.txt
new file mode 100644
index 0000000..5c6e411
--- /dev/null
+++ b/requirements.txt
@@ -0,0 +1,7 @@
+sanic==21.9.1
+websockets==10.0
+sqlalchemy==2.0.23
+python-dotenv==1.0.0
+pymysql==1.1.0
+aiogram==3.1.1
+pytonconnect==0.3.0