-
-
Notifications
You must be signed in to change notification settings - Fork 191
Add support for tracking parent of CodebaseResource entries and ensure top level paths are stored #1691
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
Merged
tdruez
merged 19 commits into
aboutcode-org:main
from
aayushkdev:1687-codebaseresource-parent-and-top-paths
Jul 25, 2025
Merged
Add support for tracking parent of CodebaseResource entries and ensure top level paths are stored #1691
Changes from all commits
Commits
Show all changes
19 commits
Select commit
Hold shift + click to select a range
2b9dbe1
Add support for storing top-level paths of the codebase
aayushkdev 4150c23
Add `ancestor` field to CodebasResource to track parent path of a res…
aayushkdev 0e5336b
fix line too long error in scanpipe/models.py
aayushkdev 41e03e7
update tests
aayushkdev 6aede58
rename `ancestor` field to `parent_directory_path`
aayushkdev c355002
add save() method to CodebaseResource to ensure `parent_directory_pat…
aayushkdev 7df056c
add tests
aayushkdev 8dca295
fix code format
aayushkdev a10cf41
rename parent_directory_path field to parent_path
aayushkdev 3a57e1a
fix code format
aayushkdev 0f4094c
minor fixes and adjustments following review feedback
aayushkdev bd11786
Simplify return statement in `parent_directory` for better readability
aayushkdev c8331df
bump migration
aayushkdev a025840
update parent_path to display root files on empty string instead of N…
aayushkdev 8c6b229
fix `scan_single_package` not giving corect `parent_path`
aayushkdev 7be20a1
fix code format
aayushkdev 5b218df
regen tests
aayushkdev 111a901
bump migration
aayushkdev 16f9b4c
make create_codebase_resource function less complex
aayushkdev File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
22 changes: 22 additions & 0 deletions
22
scanpipe/migrations/0075_codebaseresource_parent_path_and_more.py
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,22 @@ | ||
| # Generated by Django 5.1.9 on 2025-06-16 17:42 | ||
|
|
||
| from django.db import migrations, models | ||
|
|
||
|
|
||
| class Migration(migrations.Migration): | ||
|
|
||
| dependencies = [ | ||
| ('scanpipe', '0074_discovered_license_models'), | ||
| ] | ||
|
|
||
| operations = [ | ||
| migrations.AddField( | ||
| model_name='codebaseresource', | ||
| name='parent_path', | ||
| field=models.CharField(blank=True, help_text='The path of the resource\'s parent directory. Set to None for top-level (root) resources. Used to efficiently retrieve a directory\'s contents.', max_length=2000), | ||
| ), | ||
| migrations.AddIndex( | ||
| model_name='codebaseresource', | ||
| index=models.Index(fields=['project', 'parent_path'], name='scanpipe_co_project_008448_idx'), | ||
| ), | ||
| ] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.