Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Ocean Gitlab V2 Integration #1019

Closed
wants to merge 32 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
32 commits
Select commit Hold shift + click to select a range
3ec7c3d
Added Integration setup blueprints and configs
MusahMusah Sep 14, 2024
062d8eb
setup gitlab client
MusahMusah Sep 14, 2024
ab8150d
added project endpoint implementation
MusahMusah Sep 14, 2024
daaaf12
added selector for project with group
MusahMusah Sep 14, 2024
becd917
added resync events for all resources and webhook handler
MusahMusah Sep 14, 2024
01b989b
resolved issue when upserting merge request
MusahMusah Sep 14, 2024
10bc4d7
updated client methods with return types
MusahMusah Sep 14, 2024
6653b0f
fixed linting and code arrangement
MusahMusah Sep 14, 2024
7ba40e8
refactor and cleaned up implementation
MusahMusah Sep 15, 2024
8164bd0
resolved all lint and formatting issues
MusahMusah Sep 15, 2024
7cda639
replaced access token in tests
MusahMusah Sep 15, 2024
a728a9e
resolved issue with failing merge request webhook
MusahMusah Sep 15, 2024
73badd2
updated tests
MusahMusah Sep 15, 2024
23e43e3
added support for multiple access tokens
MusahMusah Sep 15, 2024
5b5498e
updated change log
MusahMusah Sep 15, 2024
97a42ba
updated change log
MusahMusah Sep 16, 2024
cd0b4b5
updated change log
MusahMusah Sep 16, 2024
3ad87b7
added rate limit
MusahMusah Sep 16, 2024
d930324
updated .env.example
MusahMusah Sep 16, 2024
3dae91b
removed unused code
MusahMusah Sep 16, 2024
60a87d3
resolved issues raised
MusahMusah Sep 18, 2024
c0fbab8
refactor resync and webhook implementation
MusahMusah Sep 19, 2024
51fad0e
added webhook support for groups
MusahMusah Sep 19, 2024
d284d47
removed unused code
MusahMusah Sep 19, 2024
15c4b0f
added token manager
MusahMusah Sep 19, 2024
bf236bb
removed unused constant
MusahMusah Sep 19, 2024
add53b7
removed unused selector
MusahMusah Sep 19, 2024
5ac1f65
refactor client
MusahMusah Sep 19, 2024
5dbaee0
refactor client
MusahMusah Sep 19, 2024
8bf9f93
added resource mapping
MusahMusah Sep 19, 2024
24f7bfb
renamed resource mapping
MusahMusah Sep 19, 2024
09a1e59
separated webhook from client
MusahMusah Sep 20, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
92 changes: 0 additions & 92 deletions .vscode/launch.json

This file was deleted.

6 changes: 6 additions & 0 deletions integrations/gitlab_v2/.env.example
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
OCEAN__PORT__CLIENT_ID="<port-client-id>"
OCEAN__PORT__CLIENT_SECRET="<port-client-secret>"
OCEAN__INTEGRATION__CONFIG__GITLAB_ACCESS_TOKENS={"glpat-Wxf9AYDXK4VGFt1kkvyv": ["*"]}
OCEAN__INTEGRATION__CONFIG__APP_HOST=
OCEAN__INTEGRATION__IDENTIFIER=
OCEAN__EVENT_LISTENER__TYPE=
153 changes: 153 additions & 0 deletions integrations/gitlab_v2/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,153 @@
# Byte-compiled / optimized / DLL files
__pycache__/
*.py[cod]
*$py.class

# C extensions
*.so

# Distribution / packaging
.Python
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
var/
wheels/
share/python-wheels/
*.egg-info/
.installed.cfg
*.egg
MANIFEST

# PyInstaller
# Usually these files are written by a python script from a template
# before PyInstaller builds the exe, so as to inject date/other infos into it.
*.manifest
*.spec

# Installer logs
pip-log.txt
pip-delete-this-directory.txt

# Unit test / coverage reports
htmlcov/
.tox/
.nox/
.coverage
.coverage.*
.cache
nosetests.xml
coverage.xml
*.cover
*.py,cover
.hypothesis/
.pytest_cache/
cover/

# Translations
*.mo
*.pot

# Django stuff:
*.log
local_settings.py
db.sqlite3
db.sqlite3-journal

# Flask stuff:
instance/
.webassets-cache

# Scrapy stuff:
.scrapy

# Sphinx documentation
docs/_build/

# PyBuilder
.pybuilder/
target/

# Jupyter Notebook
.ipynb_checkpoints

# IPython
profile_default/
ipython_config.py

# pyenv
# For a library or package, you might want to ignore these files since the code is
# intended to run in multiple environments; otherwise, check them in:
# .python-version

# pipenv
# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
# However, in case of collaboration, if having platform-specific dependencies or dependencies
# having no cross-platform support, pipenv may install dependencies that don't work, or not
# install all needed dependencies.
#Pipfile.lock

# poetry
# Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
# This is especially recommended for binary packages to ensure reproducibility, and is more
# commonly ignored for libraries.
# https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
#poetry.lock

# pdm
# Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.
#pdm.lock
# pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it
# in version control.
# https://pdm.fming.dev/#use-with-ide
.pdm.toml

# PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm
__pypackages__/

# Celery stuff
celerybeat-schedule
celerybeat.pid

# SageMath parsed files
*.sage.py

# Environments
.env
.venv
env/
venv/
ENV/
env.bak/
venv.bak/

# Spyder project settings
.spyderproject
.spyproject

# Rope project settings
.ropeproject

# mkdocs documentation
/site

# mypy
.mypy_cache/
.dmypy.json
dmypy.json

# Pyre type checker
.pyre/

# pytype static type analyzer
.pytype/

# Cython debug symbols
cython_debug/
1 change: 1 addition & 0 deletions integrations/gitlab_v2/.port/resources/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
!.gitignore
Loading