Aria/qBittorrent Telegram Mirror Bot With Additional Features
Go to file
Hafitz Setya ecccf68e5c
Update README.md
2021-02-18 14:44:50 +07:00
bot Update search.py 2021-02-15 09:22:52 +07:00
vendor Merge branch 'staging-3.0' 2020-05-09 15:55:40 +05:30
.gitignore Add support for service account 2020-03-24 15:04:24 +05:30
.gitmodules Remove broken direct download link extracters 2020-05-09 00:10:09 +05:30
Dockerfile Update Dockerfile 2021-02-11 19:29:43 +07:00
LICENSE License source under GPL v3 2019-09-29 17:24:51 +05:30
README.md Update README.md 2021-02-18 14:44:50 +07:00
add_to_team_drive.py Change default name of token file for Service account scripts 2020-04-05 14:48:34 +05:30
app.json Update app.json 2021-02-16 09:26:36 +07:00
aria.bat Specify Download Dir with RPC 2019-09-18 11:48:19 -04:00
aria.sh improved aria.sh 2020-11-28 21:37:50 +05:30
captain-definition Fix caprover file 2019-12-24 17:31:50 +05:30
config_sample.env Added AUTHORIZED_CHATS in config & auto generate String Session (#3) 2021-02-15 08:03:25 +07:00
extract added ability of extracting .7z files (#144) 2020-07-31 20:21:42 +05:30
gen_sa_accounts.py Change default name of token file for Service account scripts 2020-04-05 14:48:34 +05:30
generate_drive_token.py Fixed files not being shown which were not uploaded by bot 2019-12-26 14:47:05 +05:30
heroku.yml few changes 2020-11-13 18:12:58 +05:30
netrc fixup after e0f4c4347c 2020-04-15 14:47:33 +05:30
requirements.txt add nyaa and sukebei torrent search function 2020-11-28 21:31:05 +05:30
start.sh Project Rebase 2019-12-23 13:26:32 +05:30

Slam

Slam Mirror Bot

This is a telegram bot writen in python for mirroring files on the internet to our beloved Google Drive.

Fork of python-aria-mirror-bot

Original Source Ayanamileechbot

Some features from magneto-python-aria

Getting Google OAuth API credential file

  • Visit the Google Cloud Console
  • Go to the OAuth Consent tab, fill it, and save.
  • Go to the Credentials tab and click Create Credentials -> OAuth Client ID
  • Choose Desktop and Create.
  • Use the download button to download your credentials.
  • Clone this repo:
git clone https://github.com/breakdowns/slam-mirrorbot mirrorbot/
cd mirrorbot
  • Move that file to the root of mirrorbot, and rename it to credentials.json
  • Visit Google API page
  • Search for Drive and enable it if it is disabled
  • Finally, run the script to generate token file (token.pickle) for Google Drive:
pip install google-api-python-client google-auth-httplib2 google-auth-oauthlib
python3 generate_drive_token.py

Deployment

Fork this repo, than upload credentials.json and token.pickle to your forks

Deploy to Heroku

Features supported:

  • Mirroring direct download links to Google Drive
  • Download progress
  • Upload progress
  • Download/upload speeds and ETAs
  • Docker support
  • Uploading To Team Drives.
  • Index Link support
  • Service account support
  • Mirror all youtube-dl supported links
  • Mirror telegram files
  • Add stickers to your pack
  • Nyaa.si and Sukebei Torrent search
  • Shell and Executor

Using service accounts for uploading to avoid user rate limit

For Service Account to work, you must set USE_SERVICE_ACCOUNTS="True" in config file or environment variables Many thanks to AutoRClone for the scripts NOTE: Using service accounts is only recommended while uploading to a team drive.

Generate service accounts What is service account

Let us create only the service accounts that we need. Warning: abuse of this feature is not the aim of this project and we do NOT recommend that you make a lot of projects, just one project and 100 sa allow you plenty of use, its also possible that over abuse might get your projects banned by google.

Note: 1 service account can copy around 750gb a day, 1 project can make 100 service accounts so that's 75tb a day, for most users this should easily suffice. 

python3 gen_sa_accounts.py --quick-setup 1 --new-only

A folder named accounts will be created which will contain keys for the service accounts

NOTE: If you have created SAs in past from this script, you can also just re download the keys by running:

python3 gen_sa_accounts.py --download-keys project_id

Add all the service accounts to the Team Drive

  • Run:
python3 add_to_team_drive.py -d SharedTeamDriveSrcID

Youtube-dl authentication using .netrc file

For using your premium accounts in youtube-dl, edit the netrc file according to following format:

machine host login username password my_youtube_password

where host is the name of extractor (eg. youtube, twitch). Multiple accounts of different hosts can be added each separated by a new line

Credits