991 Commits

Author SHA1 Message Date
Athanasius
f8dc28b256
src/eddn/__init__.py: docstring 2022-08-18 15:19:16 +01:00
Athanasius
241bd911dd
Gateway: flake8 and mypy pass
# Conflicts:
#	src/eddn/Gateway.py
2022-08-18 15:19:14 +01:00
Athanasius
a8d0806446
Bouncer: flake8 pass 2022-08-18 15:18:54 +01:00
Athanasius
d43b852935
setup.py: flake8 pass 2022-08-18 15:18:54 +01:00
Athanasius
95b48ed3cc
Relay: Tweak for zmq changes 2022-08-18 15:18:53 +01:00
Athanasius
c426885b52
Monitor: Tweak for zmq changes 2022-08-18 15:18:53 +01:00
Athanasius
060645a8dc
Settings: Rename loadFrom -> load_from 2022-08-18 15:18:53 +01:00
Athanasius
3a55f6b005
Gateway: zmq's PUB is *only* in the main module now
But we still need to `import zmq.green as zmq` so use:

```python
from zmq import PUB as ZMQ_PUB
```
2022-08-18 15:18:53 +01:00
Athanasius
e9397b46e2
Settings: Rename loadConfig -> load_config 2022-08-18 15:18:52 +01:00
Athanasius
3dba22b6cb
Gateway: Remove "remember to do the python3 rebase" line 2022-08-18 15:18:52 +01:00
Athanasius
2b39934fd7
'Guard' non-code to ensure this gets updated for bottle size limit etc 2022-08-18 15:18:52 +01:00
Athanasius
f9d423f4a6
setup.py: Updated to Python3 / pathlib paradigms 2022-08-18 15:18:52 +01:00
Athanasius
d6fa3fe123
GitHub: PR Checks: run script via python 2022-08-18 15:18:52 +01:00
Athanasius
98b868a115
GitHub: PR checks: Run schema check inside renamed linting job 2022-08-18 15:18:51 +01:00
Athanasius
49b14aa62e
GitHub: pr-checks: Run scheck-schemas-load script 2022-08-18 15:18:51 +01:00
Athanasius
4b5687808f
Script to check that schema files are valid JSON 2022-08-18 15:18:51 +01:00
Athanasius
323032f92a
.pydevproject; Update to cite Python 3.9 2022-08-18 15:18:51 +01:00
Athanasius
2e09c5de32
coveragerv: Exclude venv-3.9 as well 2022-08-18 15:18:51 +01:00
Athanasius
8c3bf0eaff
python: Use version 3.9.8 2022-08-18 15:18:50 +01:00
Athanasius
1c07e4ccc7
github: Add pr-checks workflow
* flake8 checks
2022-08-18 15:18:50 +01:00
Athanasius
a8c683093c
github: Add dependabot config 2022-08-18 15:18:50 +01:00
Athanasius
5e51c604a4
flake8: minor cleanups
# Conflicts:
#	src/eddn/Gateway.py
2022-08-18 15:18:48 +01:00
Athanasius
7fe2e8880a
Relay: As we're not sending topic from Gateway, take out the sub code
Just subscribe to everything.
2022-08-18 15:18:29 +01:00
Athanasius
529725d2db
Gateway -> Monitor now working
We literally weren't making use of the 'topic' in the message. Thus, so
as to avoid issues with trying to mash a string topic together with a
bytes (compressed) message, I've ripped that out.
2022-08-18 15:18:29 +01:00
Athanasius
cc19d390ce
Monitor: python3 tweaks
* setsockopt_string()
* Trying to see what's up with:

Traceback (most recent call last):
  File "src/gevent/greenlet.py", line 906, in gevent._gevent_cgreenlet.Greenlet.run
  File "/home/eddn/dev/python3.9-venv/lib/python3.9/site-packages/eddn-2.0a0.dev0-py3.9.egg/eddn/Monitor.py", line 203, in monitor_worker
    message_text = zlib.decompress(message)
zlib.error: Error -3 while decompressing data: incorrect header check
2021-11-04T18:25:03Z <Greenlet at 0x7f71dbecf150: monitor_worker(b'\'https://eddn.edcd.io/schemas/journal/1\' |-| b)> failed with error
2022-08-18 15:18:29 +01:00
Athanasius
f7370a2f0b
Monitor: *Maybe* working now?
It doesn't crash, including when the gateway successfully receives a
message, but unclear if those messages are then making it to the Monitor
OK.
2022-08-18 15:18:29 +01:00
Athanasius
fdee2c054f
python3: Gateway now working
Now I'm actually trying to run the code I'm finding more that needs
changing in order to run under python3
2022-08-18 15:18:28 +01:00
Athanasius
257d3e880a
setup.py: Don't cite module versions, let requirements.txt do that 2022-08-18 15:18:28 +01:00
Athanasius
998be94c5d
setup.py: General python3, flake8, mypy 2022-08-18 15:18:28 +01:00
Athanasius
bd5784034a
Validator: Full flake8 and mypy pass 2022-08-18 15:18:28 +01:00
Athanasius
b5df9439ad
requirements: strict_rfc3339 was unused 2022-08-18 15:18:28 +01:00
Athanasius
e6529060e2
StatsCollector: Full flake8 and mypy pass
A function name refactor touches other files.
2022-08-18 15:18:27 +01:00
Athanasius
e6b81a2a3f
DuplicateMessages: Full flake8 and mypy pass 2022-08-18 15:18:27 +01:00
Athanasius
ee7ac90996
DuplicateMessages: Refactor isDuplicated() name to snake_case 2022-08-18 15:18:27 +01:00
Athanasius
01b5ccf7ac
DuplicateMessages: Very initial flake8 pass 2022-08-18 15:18:27 +01:00
Athanasius
e9b4afcdf6
Use that bottle Plugin.apply() signature throughout
# Conflicts:
#	src/eddn/Gateway.py
2022-08-18 15:18:24 +01:00
Athanasius
a05e1d3d2c
.flake8: Comment out min-coverage-percents
I figured out the bottle Plugin.apply() thing.

Leaving as a comment for reference.
2022-08-18 15:18:01 +01:00
Athanasius
485055357b
Bouncer: Trying out 'Callable' for bottle plugin.apply() type annotation 2022-08-18 15:18:01 +01:00
Athanasius
1f420a8f3e
Bouncer: Full flake8 and mypy pass 2022-08-18 15:18:00 +01:00
Athanasius
a44b6286b2
.flake8: Drop the type annotations minimum to 50%
Mostly I'm having trouble finding what else I *could* add types to in
Bouncer.py.  I think it's the bottle plugin classes' (EnableCors and
CustomLogging) functions.
2022-08-18 15:18:00 +01:00
Athanasius
fcfe9e01b2
Settings.loadConfig() got renamed to load_config() 2022-08-18 15:18:00 +01:00
Athanasius
8fb722f6c5
Settings: flake8 and mypy passes
Yes, we want to keep the extra-spaces formatting, but that means
noqa'ing E221.
2022-08-18 15:18:00 +01:00
Athanasius
dd7e12fa28
Version: Bump to 2.0-alph0 for this python3 work 2022-08-18 15:18:00 +01:00
Athanasius
3b5d16c674
Relay: Full flake8/mypy pass 2022-08-18 15:17:59 +01:00
Athanasius
06e9442bea
Monitor: Make EnableCors.apply() static 2022-08-18 15:17:59 +01:00
Athanasius
07e332ff61
Monitor: types pass 2022-08-18 15:17:59 +01:00
Athanasius
33a09ef8b5
Monitor: docstring'd 2022-08-18 15:17:59 +01:00
Athanasius
b37307e6a2
Monitor: Initial flake8 pass 2022-08-18 15:17:58 +01:00
Athanasius
3b3e1a91c5
Gateway: Make the CORS apply() static
Quietens a PyCharm warning
2022-08-18 15:17:58 +01:00
Athanasius
99679d9d5b
Gateway: Minor renames to make PyCharm not gripe
These are related to local variables shadowing globals.
2022-08-18 15:17:58 +01:00