Crawler blacklist, show URLs when crawling#113
Merged
VincentBean merged 4 commits intodevelopfrom Mar 8, 2026
Merged
Conversation
Contributor
There was a problem hiding this comment.
Pull request overview
Adds configurable URL blacklisting for the crawler (with platform presets) and a UI table to show discovered/crawled URLs while a crawl is running.
Changes:
- Add “Advanced” crawler form section with platform preset selector + URL blacklist textarea.
- Apply URL blacklist filtering when queueing newly discovered links.
- Add a Livewire table to show URLs (and crawled status) during crawling.
Reviewed changes
Copilot reviewed 10 out of 10 changed files in this pull request and generated 6 comments.
Show a summary per file
| File | Description |
|---|---|
| resources/views/components/form/textarea.blade.php | New reusable textarea form component (supports Livewire binding and optional Alpine x-ref). |
| packages/crawler/src/Validation/ValidRegexLines.php | Adds a validation rule for “one regex per line” blacklist input. |
| packages/crawler/src/ServiceProvider.php | Registers the new crawler-crawled-urls-table Livewire component. |
| packages/crawler/src/Livewire/Tables/CrawledUrlsTable.php | Implements the table for displaying URLs and crawled status with a filter. |
| packages/crawler/src/Livewire/Forms/CrawlerForm.php | Adds url_blacklist form field + validation rule (but currently conflicts with persistence). |
| packages/crawler/src/Livewire/CrawlerForm.php | Loads/saves blacklist into crawler settings (but currently will also persist a non-column field). |
| packages/crawler/src/Actions/CrawlUrl.php | Filters queued links using the blacklist (currently contains a fatal type-hint issue and invalid regex composition). |
| packages/crawler/resources/views/livewire/crawler-form.blade.php | Adds UI for presets + advanced URL blacklist input. |
| packages/crawler/resources/views/crawler/index.blade.php | Shows the new crawled-URLs table when crawler state is Crawling. |
| packages/crawler/config/crawler.php | Adds platform blacklist presets (Magento, WordPress, Joomla, Drupal). |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
No description provided.