:) -k
Name | Size | Type | Modified |
---|---|---|---|
.git | Folder 📁 | 03/06/2023 20:03:04 | |
.gitignore 🔎 | 234 B | .gitignore 📄 | 03/06/2023 20:00:06 |
.gitlab-ci.yml 🔎 | 347 B | .yml 📄 | 03/06/2023 20:00:06 |
AUTHORS 🔎 | 271 B | . 📄 | 03/06/2023 20:00:06 |
CODE_OF_CONDUCT.md 🔎 | 1.2 KB | .md 📖 | 03/06/2023 20:00:06 |
CONTRIBUTING.md 🔎 | 3.79 KB | .md 📖 | 03/06/2023 20:00:06 |
LICENSE 🔎 | 1.52 KB | . 📄 | 03/06/2023 20:00:06 |
OnionSproutsBot | Folder 📁 | 03/06/2023 20:03:17 | |
README.md 🔎 | 5.07 KB | .md 📖 | 03/06/2023 20:00:06 |
example.yaml 🔎 | 1.24 KB | .yaml 📄 | 03/06/2023 20:00:06 |
locales | Folder 📁 | 19/04/2023 00:03:26 | |
requirements-types.txt 🔎 | 55 B | .txt 📄 | 03/06/2023 20:00:06 |
requirements.txt 🔎 | 153 B | .txt 📄 | 03/06/2023 20:00:06 |
scripts | Folder 📁 | 03/06/2023 20:03:21 | |
setup.cfg 🔎 | 1.3 KB | .cfg 📄 | 03/06/2023 20:00:06 |
setup.py 🔎 | 2.43 KB | .py 🐍 | 03/06/2023 20:00:06 |
Telegram bot for distributing software by The Tor Project.
If you'd like to include any other locales other than English, you should
consider installing gettext using sudo apt install gettext
.
If you want to include any further translations, run
sh download_translations.sh
.
If everything went smoothly, the locales
folder should now contain a set of
files that look like this: onionsproutsbot+[locale].po
. These files will be
included automatically during the installation of the bot.
If you are planning to work with the source code, run
pip3 install -r requirements.txt
. That should suffice on a system with
Python 3.7+ and pip
installed. If applicable (mostly on Linux systems), you can also use Python
modules provided by software packages.
For example, on Debian, you can install the aiofiles
dependency using apt install python3-aiofiles
.
In most cases, you can simply run pip install .
. This will install
the Telegram bot on your system.
You will need a Telegram account, as well as a bot account that can also be created with the help of BotFather. Make sure to create an application on the Telegram website.
example.yaml
.You will need to enter your API key, your application's API hash and your bot's access token. Although this bot was designed to be used with a bot account, you can also use an access token for a user account. There is also a set of additional options, such as the default name and the location of the database file, where all the ID numbers of cached files that have already been uploaded to Telegram's servers are stored.
.session
file is not present, you will be asked to enter a phone
number and an access code.Make sure you're using an interactive terminal when running the bot for the first time. This will generate
a file with the extension .session
, which you can also copy to other machines.
Make sure to keep that file secret!
osbtg example.yaml
!Currently, the bot is being developed on The Tor Project's GitLab instance as a part of the gettor project.
If you do not wish to make an account, it is also possible to report issues directly using email.
Since the design of the bot is evolving constantly, there's currently no formal documentation. However, the design and the thought process that have gone into this are being extensively documented. The latest revision of the code always includes comments that correspond to the problems that we dealt with, and temporary countermeasures for problems that have not been fully thought out yet will definitely be there until they are resolved. Older commits may provide more context to certain design decisions.
Someone brought up to me once that other bots like mine have solved similar problems. Even though similar implementations exist, they achieve wildly different goals, they are not the same.
Here's a list of our goals in order to better describe what this project aims to be:
Pyrogram, unlike most other libraries, does not interact with Telegram's Bot API, but uses the MTProto protocol instead, which is the library that Telegram clients use. Using MTProto is of paramount importance, as it is bound to the same limitations that an actual user is, which is also why a user account (with a set of API keys) is also required.
For example, a user can upload files that are as large as 2 GB. However, a simple bot can only upload files of up to 50 MBs.
I unfortunately found out about this the hard way, as I initially attempted to write the bot using python-telegram-bot, which is syntactically similar in many ways. That allowed me to copy and paste most of the code, but I had to think about a lot of design decisions all over again and, as Pyrogram isn't used as often as other competing libraries.
Although OnionSproutsBot is a project that is developed independently from The Tor Project, Inc., one of its goals is to integrate itself enough to the organization in order to ensure its longevity and usefulness.
Even if the majority of this project's authors do not have any business relationship with The Tor Project, Inc., the project still falls under what would be best described as the community surrounding the aforementioned organization. The maintainer also believes in the values represented by the organization and its community, which aim to foster an inclusive community where people feel safe to participate, engage and share their points of view.
For those reasons, the maintainer believes that OnionSproutsBot should use the Code of Conduct of The Tor Project, Inc. This does not mean that third parties will necessarily get involved in the resolution of a supposed interpersonal conflict; you are merely reminded that even if we are independent, we have a similar belief system and that you should choose to be awesome to your fellow human beings whenever possible.
The latest version of the Code of Conduct can be found here:
https://gitweb.torproject.org/community/policies.git/plain/code_of_conduct.txt
Hi, thank you for taking the time to contribute to this project!
All types of contributions are encouraged and immensely appreciated. See the Table of Contents for different ways to help and details about how this project handles them. Please make sure to read the relevant section before making your contribution. It will make it a lot easier for us maintainers and smooth out the experience for all involved. We look forward to cooperating with you! :)
You can contribute translations to this project on Weblate: https://hosted.weblate.org/projects/tor/
If you're experiencing a problem with this project, the right place to report such issues is our bug tracker.
For us to be able to help, we need to know as much about your problem as possible.
Your report should contain the following information:
This format should be preferred if you are reporting an issue on behalf of somebody else.
You can skip this section if your proposed change does not alter any strings that are visible to the user.
We use gettext to translate the bot between English and many other languages. As this is relatively unusual for this kind of project, we find it important to mention the steps to update the locale files, so as to keep this project accessible to everyone.
sudo apt install gettext
)OnionSproutsBot/locales/onionsproutsbot.pot
xgettext -L Python \
--files-from=OnionSproutsBot/locales/POTFILES \
--output=OnionSproutsBot/locales/onionsproutsbot.pot \
--copyright-holder="The OnionSproutsBot Authors." \
--package-name=OnionSproutsBot \
--msgid-bugs-address="https://gitlab.torproject.org/tpo/anti-censorship/gettor-project/OnionSproutsBot/issues" \
--no-location
The summary of your commit should not contain more than 50 characters. All other lines should not contain more than 70-75 characters..
Please try to be concise and precise about what your commit does. If you believe that the Summary adequately explains it, then that's more than enough.
Please try to avoid mentioning any crucial information about your change in the description of a Merge Request, and use the Commit for this purpose instead, as its contents will be automatically used for that description later.
An exception to this rule would be e.g. using the description of a Merge Request to directly address another contributor over something that is related to the review process, which probably isn't something that should forever "engrave" the commit tree.
We use flake8 for formatting. The maximum length of a line, as defined in
setup.cfg
, is 132 columns.
OnionSproutsBot is distributed under this license:
Copyright (c) 2020-2023, Panagiotis "Ivory" Vasilopoulos, et al.
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
* Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above
copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
* Neither the names of the copyright owners nor the names of its
contributors may be used to endorse or promote products derived from this software without specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.