Skip to content

GOG-Nebula/galaxy-integration-steam

 
 

Repository files navigation

Steam Integration

GOG Galaxy 2.0 Community integration for Steam.

Open Beta:

This project is in open beta. It is not completely bulletproof, but it has been extensively tested. We are hoping that crowdsourcing the error checking will help find anything we may have missed.

Known Issues:

  • Large libraries are known to be a little wonky. Sometimes, the plugin may crash after initially starting it, but then immediately work properly once you hit "retry". There's not much we can do here.
  • If you take too long to enter a 2FA code, any login stuff after that have a small chance of crashing. This is because steam kicks us out after roughly a minute of inactivity. We reconnect, but if we were sending them something when they kicked us out, we'd never get a response and after a minute of waiting, the plugin will close. Restarting the plugin will fix this, but it is something we are looking at fixing in a later version. In our tests, it has happened, but is difficult to replicate. If this issue is more prevalent than we anticipate, it's something we will address immediately.
  • Closing GOG immediately after connecting for the first time may cause GOG to crash. Similarly, disconnecting Steam immediately after connecting it may cause the plugin to crash, though you usually can hit retry and it'll work again. Basically, GOG thinks we are immediately done syncing once we connect, and that is not the case, especially for larger libraries. So, it thinks it can disconnect immediately too, and if we're in the middle of writing some data down, it has to wait, but has basically hamstrung us in the process. It's not an ideal situation. Fortunately, it only happens once, and won't happen at all if you give it time.

Installation:

  • There is a zip file in the releases directory. Download this.
  • Navigate to where GOG stores the steam plugin.
    • Windows:
      %localappdata%\GOG.com\Galaxy\plugins\installed\steam_ca27391f-2675-49b1-92c0-896d43afa4f8
    • MacOS:
      ~/Library/Application Support/GOG.com/Galaxy/plugins/installed/steam_ca27391f-2675-49b1-92c0-896d43afa4f8
  • If the file does not exist, create it. If it does, delete everything inside it.
  • Extract the zip release so all the contents are in that file.
  • Start GOG Galaxy.

Logging:

We tried to kill as many bugs and test as many behaviors as possible, but we aren't perfect.
You may find some case we haven't tested.
Please raise an issue here, and in the comment, attach your logs.
They can be found here:

  • Windows:
    %programdata%\GOG.com\Galaxy\logs
  • MacOS:
    /Users/Shared/GOG.com/Galaxy/Logs

We typically only need the steam_<numbers and letters>.log file.

Setup (For Developers)

You will need Python 3.7, and at least Python 3.7.9. If on Windows, you need to use the 32-bit version. You will then need to set up your python virtual environment, and then have pip get all the dependencies the project needs in your virtual environment. Once you have that, you can start making changes. Some IDEs will do this for you, but here are explicit instructions for doing it on your own.

Environment Setup (Windows)

  • Python 3.7.9 is the latest available Python 3.7 release you can easily get on Windows. it is available here: Python 3.7.9 32-bit. Please make sure you use the 32-bit version, even on 64-bit machines. If you have a package manager that can get python 3.7, you may also use that.
  • If you have another version of python installed, it is highly recommended you install py when you go through the installer. Our tools are designed to use py if it's available, but fallback to just python. When you have multiple versions of python installed, python may not refer to 3.7 and that would break the code.
  • Create a new virtual env:
    • If you have py, run py -3.7 -m venv .venv
    • If you only have python 3.7.9, run python -m venv .venv
  • Activate the virtual env. Using powershell, run .venv\Scripts\activate.ps1
  • Install the dev dependencies:
    pip install -r requirements/dev.txt

Environment Setup (MacOS)

  • Python 3.7.9 is available as a package at Python 3.7.9 32-bit. However, if you have another version of python installed, it is highly recommended you get pyenv and install python 3.7 through there. It's likely to be a newer version of python 3.7.
    • The easiest way to get pyenv is through Homebrew. This can be installed from Homebrew — The Missing Package Manager for macOS (or Linux)
      Then, from terminal, you can run brew install pyenv
      To actually get python 3.7.9, run pyenv install 3.7.9. You can also use a newer version of 3.7, like 3.7.16
      Finally, tell this project to use python 3.7.x for all python commands from this folder.
      pyenv local 3.7.9 or whatever newer version you used.
  • Set up the virtual environment. This is the same for pyenv and only python 3.7.9:
    python -m venv .venv
  • Activate the virtual env:
    .venv/Scripts/activate
  • Install the dev dependencies:
    pip install -r requirements/dev.txt
  • NOTE: MacOS requires certifications. We installed certifi, but it typically requires a symlink be added to your certificates, and that's not the case. If you installed the program from the pkg on python's website, it comes bundled with an Install Certificates.command that you can run. We have also provided a slimmed-down version of it, but it likely does not have permission to run.
    • To User our version:
      chmod +x "Install Certificates.command"
      ./Install Certificates.command You may need to allow it through gatekeeper. we recommend viewing the script before allowing it if you are uncomfortable with executing our script. It is copied directly from the python 3.7.9 pkg, we just remove the install certifi command (we already did that).

Making Changes:

Once you are set up, you can make whatever changes you need to. There are, however, a few commands we'd like to make you aware of.

Steam uses protobufs for its messages. Please see README_UPDATE_PROTOBUF_FILES.md in the protobuf_files directory for more information on how these work and how to update them.

There are several commands that make your life easier. These are done via the invoke python module. To do so, make sure your virtual environment is active (.venv\Scripts\activate.ps1 on Windows via cmd/powershell, .venv/Scripts/activate on MacOS via Terminal) and then the following commands will be available to you:

To build your code, run inv build
To run the defined python tests on your code, run inv test
To install the changed code on your local GOG Galaxy instance, run inv install. Note that GOG Galaxy must not be running when you do this. To pack a zipped release file that you can share with others, run inv pack

Testing new Builds (non-developers)

For some testing, we will require you build to the latest version from scratch. For non-developers, however, the full developer install is overkill, so we've made a simplified version that only does the bare essentials to take the source code and install a plugin from it. There are only a few commands you need to run. If you want to know what they do, they are documented above each command. A tl;dr: version is below it.

Please do the following:

  • Download or clone this repo. If you download a zip, make sure to extract it. You need to be in the main directory for this to work.

  • Download Python 3.7.9 32-bit. FOR WINDOWS:
    If you have another version of python installed, make sure install py is checked.
    This makes it easier to select which version of python you are using and we need our virtual environment in 3.7.9.
    If using Windows, make sure you have enabled the setting that adds Python to the PATH environmental variable.
    These should be the default settings, but make sure anyway.
    FOR MAC: run Install Certificates.command

  • Create a new virtual env:

    • If you only have python 3.7.9
      python -m venv .venv
    • IF you have multiple python versions installed and are on Windows (assumes you have py as well)
      py -3.7 -m venv .venv
    • If you are on MacOS, you will need to specify which python you are using. Please consult StackOverflow (we're Windows developers, sorry!).
  • Activate the virtual env

    • Windows, Powershell:
      .venv\Scripts\activate
    • MacOS, terminal:
      .venv/Scripts/activate
  • Use Pip to get the python tools we need to install the plugin.
    These will only be applied to the .venv virtual environment you created earlier:
    pip install -r requirements/install.txt

  • Install the plugin. It should work if you have deleted the original plugin, but will patch it if it is there.
    inv install

Installation (non-dev, TL;DR):

Windows (Powershell recommended)

@echo You must have installed python 3.7.9 (32 bit). If not, the rest of this won't work.
py.exe -3.7 -m venv .venv
@echo If the previous command did not work, you do not have py installed or py is not in your PATH.
@echo If you only have python 3.7.9, run the next command.
@echo If it worked, skip the next command.
python.exe -m venv .venv
@echo virtual environment is installed. on to the next step.
.venv\Scripts\activate
pip install -r requirements/install.txt
inv install

MacOS (assumes your shell is bash, which is the default. if you are good enough to change that, you can figure out how to run these)

echo You must have installed python 3.7.9 (MacOS). If not, the rest of this won't work.
py -3.7 -m venv .venv
echo If the previous command did not work, you do not have py installed or py is not in your PATH.
echo If you only have python 3.7.9, run the next command.
echo If it worked, skip the next command.
python -m venv .venv
echo virtual environment is installed. on to the next step.
.venv/Scripts/activate
pip install -r requirements/install.txt
inv install

Install Error fixes:

If inv install throws a bunch of errors, make sure you have the proper python venv set up. It should complain about getargspec. If this happens, you created the wrong virtual environment. You can either delete the .venv folder and reinstall it, or create a new virtual environment with a different name and use that.

Make sure you use py -3.7 when creating your venv. If you don't have py, get it. You can specify the full path to python 3.7 instead if you want, but that's harder to do and harder to explain here.

Why this fork?

Well, without being too complicated, Steam changed how they do authentication. We used to be able to use one call and magically get a lot of info we needed. But, if we're being honest, it was a little insecure, and it easy. While we were using it for legitimate purposes, not everyone else was, and one of Valve's greatest deterrence to botting or DOS attacks (etc) is making things difficult. The new workflow uses a significant back-and-forth between a Steam Server and ourselves, closely resembling a common web form of authentication called OAuth2. This meant a lot of under-the-hood changes.

Credits

Current Version:

This is a fork of https://github.com/FriendsOfGalaxy/galaxy-integration-steam

The new Authorization flow implementation is heavily influenced by SteamKit. https://github.com/SteamRE/SteamKit
While we have not utilized their source code, they have implemented the new authentication workflow before we did, and we used their knowledge of how to do so in order to implement it ourselves. If you are doing anything steam related in C#, you should check them out; their project has far more features than our own.

Some work was influenced by ValvePython. https://github.com/ValvePython/steam
Our projects do the same thing, but use different methods (we use asyncio, they use gevent, for example). Both projects were working on the new Auth Flow simultaneously, with little collaboration between us. That said, their scope is much larger than our own and lets you do a lot more things. If you are looking for a python means of implementing a steam network authentication, you should use their work instead.

The names of individual developers will appear here, soon(ish). Any thanks can be directed there

Original Version:

Original Plugin was based on work and research done by others:

About

Integration with Steam for Galaxy

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Python 95.0%
  • HTML 2.6%
  • CSS 2.2%
  • Other 0.2%