SteamGifts bot to enter only for whitelisted games
I wish I would win all my followed and wishlisted games ;) I don't want win all the games in SG and this bot will apply only for whilelisted games.
This is my first project in GO (and there no some goish features like channels and coroutines - just syntax)
This is python implementation which inspired me to do this https://github.com/theWaR13/SteamGiveawayManager
- config.json - bot config. Optional
profile
- If you want to parse your steam profile. You need only name, not whole URL. Optional.mail
- set smtp settings for sends some notifications (optional)smtp
- smtp serverport-num
- smtp server portusername
- smtp authorization username (mail will be sent from this email)password
- smtp auth password (not tested without auth)subjecttag
- tag in mail subject (i.e. [SG_BOT])recipient
- mail will be send to this email
digest
- send daily digest for the previous day (or in panic message - current digest)- if there is no "recipient" or "mail" not filled properly - no mail at all simple server config (optional). these paramters can'be changed through web ui. to apply changes bot must be restarted
httpauth
- http simple auth loginhttppwd
- http simple auth passwordweb-port-num
- http server listening port (default 8080) (don't forget to open it in firewall!)
-
gameslist.json - Optional. Fill it with games. "SteamID":"Name", Name - optional, all game titles takes from gifts page: you can leave it empty: "") If no games loaded (profile + list) - bot stops
-
cookies.json Required. You need to autorize in SG through browser, go to the DevTools in it and copy all cookies (I think only session cookie works, but anyway). "Name":"Value:Domain:Path" (separated by colon) If you wish parse giveaways that points to /sub/ steam pages with age check, you have to set these cookies: "wants_mature_content": "1:store.steampowered.com:/", "birthtime": "60368401:store.steampowered.com:/", # about 1972/4/4 "lastagecheckage": "1-0-1972:store.steampowered.com:/"
-
To run as daemon (tested only for linux)
- sudo ./bot install
- Set service working dir for ./bot path (/etc/systemd/system/sgbotservice.service -> [Service] -> WorkingDirectory=/path/to/executable
- (sudo) systemctl daemon-reload
- sudo service sgbotservice start
- service sgbotservice status
- profit!
If you have some cloud functions service (AWS Lambda, Yandex.Cloud, etc) you could try to install this bot as cloud function. At this point you can install it on Yandex.Cloud (as I did). Frankly, there is 3 cloud functions: bot which checks, email sender and script with db seeding.
- Create YandexDB (YDB) serverless database
- Copy DB 'location'
- Run
yandex.botinit-func.deploy.sh
- it prepares all mandatory files - Create function from zip archive, choose Go/1.17, set 128M, 60sec timeout, set
bot-init-func.RunInitBotDB
as entry point - Create service account with editor privelegies for YDB
- Set
STEAM_PROFILE
andYDB_DATABASE
(this is location from YDB) environment variables - Finish function creation
- Run function once (test). It has to create 3 tables into YDB:
games (id:uint64, name:string)
,cookies (name:string, domain:string, path:string, value:string)
anddigest (message:UTF8)
- Run
yandex.bot-func.deploy.sh
- it prepares all mandatory files - Create function from zip archive, choose Go/1.17, set 128M, 60sec timeout, set
bot-func.RunSGBOTFunc
as entry point - Create service account with editor privelegies for YDB
- Set
STEAM_PROFILE
andYDB_DATABASE
(this is location from YDB) environment variables - Finish function creation
- Create trigger for schedule function invokation (hourly - but you can check as you wish)
- Create service account (or add to existing serverless.invoker role)
- It's has to work!
- Run
yandex.digest-bot.deploy.sh
- it prepares all mandatory files - Create function from zip archive, choose Go/1.17, set 128M, 5sec timeout, set
digest-func.SendDigest
as entry point - Create service account with editor privelegies for YDB (or use existing)
- Set
MAILER_SMTP
,MAILER_PORT
,MAILER_AUTH_NAME
,MAILER_AUTH_PWD
,MAILER_SUBJECT
,MAILER_RECIPIENT
environment variables for mailer creation andYDB_DATABASE
for DB connection - Finish function creation
- Create trigger for schedule function invokation (daily - but you can send as you wish)
- Create (select) service account with serverless.invoker role
- It's has to work!
- https://github.com/PuerkitoBio/goquery - useful jquery-like selectors for HTML documents
- https://github.com/takama/daemon - golang daemon
- http://gopkg.in/gomail.v2 - mailer for spam
- https://github.com/yandex-cloud/go-sdk - using as cloud function
- https://github.com/ydb-platform/ydb-go-sdk - store data for cloud function