-
Notifications
You must be signed in to change notification settings - Fork 79
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
[Integration][Gitlab-v2] Added support for file kind #1482
base: main
Are you sure you want to change the base?
Conversation
…3110-Initialise-New-Gitlab-Integration
- Define `ObjectKind` enum for supported object types - Implement `create_gitlab_client` function to create GitLab client instance - Define `on_start` event handler for application setup - Implement `setup_application` function for webhook setup (placeholder) - Define `on_resync_projects` event handler for syncing GitLab projects to Port
- Create `GraphQLClient` class to execute GraphQL queries - Implement `execute_query` method to send queries with variables - Handle errors and raise exceptions for failed queries
- Create `GitLabClient` class to encapsulate GraphQL and REST clients - Implement `get_projects` method to fetch projects with pagination using GraphQL
- Create `Fragments` class with reusable `PROJECT_FIELDS` fragment - Create `ProjectQueries` class with `LIST` query to fetch projects with pagination
- Create `RestClient` class to send REST API requests - Implement `send_api_request` method for single requests - Implement `make_paginated_request` method for paginated requests - Handle errors and raise exceptions for failed requests
- Create `AuthClient` class to manage authentication token - Implement `get_headers` method to return headers with bearer token
- Update .env.example with new environment variables for event listener, base URL, token mapping, integration identifier, and integration type - Update blueprints.json with Service blueprint for GitLab projects, including properties for URL, README, description, namespace, default branch, languages, and labels - Update port-app-config.yml with project resource mapping to match Service blueprint properties and map project fields to corresponding GitLab project fields - Update spec.yaml with integration details, exported resource kind, and configurations for GitLab token, app host, and GitLab host
…3110-Initialise-New-Gitlab-Integration
- Implement client singleton pattern - Add support for additional entity types - Fix URL handling with trailing slash removal
- Add get_groups() method using GraphQL API - Add get_issues() method using REST API - Add get_merge_requests() method using REST API
- Replace GraphQL-based group fetching with REST API implementation - Add min_access_level and all_available parameters to group requests - Add new get_group_resource method to fetch resources for a specific group - Remove unused code for issues and merge requests endpoints
- Remove 'all_available' parameter from groups request - Add debug logging for REST API requests - Add get_group_resource method to fetch issues and merge requests by group - Add validation for supported resource types - Set default state parameter for group resources to 'all' - Improve error handling and logging for REST requests - Update typing annotations for better code clarity
…3110-Initialise-New-Gitlab-Integration
- Replace direct auth_client usage with pre-fetched headers - Improve code formatting and reduce method complexity - Simplify header retrieval in REST and GraphQL clients
…//github.com/port-labs/ocean into PORT-13460-Add-Support-for-file-kind-Gitlab
…3460-Add-Support-for-file-kind-Gitlab
CI Feedback 🧐(Feedback updated until commit 96c876f)A test triggered by this PR failed. Here is an AI-generated analysis of the failure:
|
… helper (enrichment, group, file/search) sections. - Organized RestClient methods by pagination, project, file, and helper categories. - No functional changes, only reordered for better readability.
…pository This commit refactors the GitLabClient.search_files method to use scope and query parameters instead of path patterns, aligning it with GitLab's advanced search syntax. The changes include: - Updated search_files to take scope and query, delegating repo-specific searches to a refactored _search_in_repository. - Modified _search_in_repository to use scope and query, removing pattern-based logic and dependencies (fnmatch, convert_glob_to_gitlab_patterns). - Renamed FilesSelector.path to query in integration.py with a description supporting GitLab's advanced search syntax. - Adjusted on_resync_files in main.py to hardcode scope="blobs" and use the new search_files signature.
…3460-Add-Support-for-file-kind-Gitlab
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Choose absolute import over relative imports.
…ileProcessor` to the new `processors` module. - Added rate limiting to `GitLabFileProcessor` with a maximum of 20 requests per second using `aiolimiter`. - Refactored file and search handling logic for GitLab file content and existence checks. - Added a utility function to parse search strings for GitLab queries. - Updated dependencies in `pyproject.toml` to include `aiolimiter`. - Adjusted imports in `integration.py` to reflect new file structure.
- Fixed type casting for project_id in _process_file method - Removed redundant declaration of PARSEABLE_EXTENSIONS in _process_batch method - Updated CHANGELOG with new release date (2025-04-02) and changed section from "Improvements" to "Features"
… results. - Update _search_in_repository and _search_in_group to use batches directly. - Move GitLabFileProcessor._search setup inside if/elif for efficiency. - Use self._rate_limiter instead of class name.
Description
What
scope
andquery
.Why
Enable users to sync and manage file-based data from GitLab in Port.
How
Client Updates (
gitlab_client.py
):get_file_content
andfile_exists
for retrieving and checking file existence.search_files
to search for files usingscope
(e.g.,"blobs"
) andquery
, supporting GitLab’s advanced search syntax across repositories and groups.Parsing Logic (
utils.py
):parse_file_content
to parse JSON and YAML file content into structured data.Entity Processing:
file_entity_processor.py
to handlefile://
references by fetching and parsing file content.Integration Updates:
GitLabFileProcessor:
file://
references in entity mappings, fetching contentsearch://
references in entity mappings, checking file existence.GitLabFilesResourceConfig (
integration.py
):query
field to configure file searches using GitLab’s advanced search syntax.Integration and Main Updates (
main.py
):on_resync_files
handler to sync files usingscope="blobs"
and user-defined queries.Utilities and Improvements:
utils.py
):parse_file_content
for JSON/YAML parsing.get_file_paths
ingitops/utils.py
to extract file paths from entity mappings (if applicable).Notes for PR Reviewers
"filename:config.yaml"
,"test"
) instead of pattern matching.scope="blobs"
for file searches; future enhancements could expand to other scopes.query
instead of glob patterns for file searches in gitlab-v2Type of change
Please leave one option from the following and delete the rest:
All tests should be run against the port production environment(using a testing org).
Core testing checklist
Integration testing checklist
examples
folder in the integration directory.Preflight checklist
Screenshots
API Documentation
Provide links to the API documentation used for this integration.