-
Notifications
You must be signed in to change notification settings - Fork 109
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
Open
aayushkdev
wants to merge
14
commits into
aboutcode-org:main
Choose a base branch
from
aayushkdev:1687-codebaseresource-parent-and-top-paths
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Add support for tracking parent of CodebaseResource entries and ensure top level paths are stored #1691
Changes from all commits
Commits
Show all changes
14 commits
Select commit
Hold shift + click to select a range
a5343b1
Add support for storing top-level paths of the codebase
aayushkdev dfab26b
Add `ancestor` field to CodebasResource to track parent path of a res…
aayushkdev 71ab4d7
fix line too long error in scanpipe/models.py
aayushkdev e417f9d
update tests
aayushkdev ecb4ab6
rename `ancestor` field to `parent_directory_path`
aayushkdev 94c276f
add save() method to CodebaseResource to ensure `parent_directory_pat…
aayushkdev 08687b0
add tests
aayushkdev 474ce17
fix code format
aayushkdev 8476d63
rename parent_directory_path field to parent_path
aayushkdev 62e9462
fix code format
aayushkdev 15296e9
minor fixes and adjustments following review feedback
aayushkdev 5bebfb2
Simplify return statement in `parent_directory` for better readability
aayushkdev d163577
bump migration
aayushkdev 2b5b2f7
update parent_path to display root files on empty string instead of N…
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/0074_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', '0073_add_sha1_git_checksum'), | ||
] | ||
|
||
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
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.