[PR #1191] [MERGED] [FEAT] Website depth scraping data connector #3616

Closed
opened 2026-02-22 18:34:09 -05:00 by yindo · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/Mintplex-Labs/anything-llm/pull/1191
Author: @shatfield4
Created: 4/25/2024
Status: Merged
Merged: 5/14/2024
Merged by: @timothycarambat

Base: masterHead: 1190-feat-website-scraping-depth


📝 Commits (9)

  • 0f157cf WIP website depth scraping, (sort of works)
  • a2a3104 website depth data connector stable + add maxLinks option
  • b62327f Merge branch 'master' into 1190-feat-website-scraping-depth
  • d7d3646 linting + loading small ui tweak
  • 7d11401 Merge branch 'master' into 1190-feat-website-scraping-depth
  • b3b394f refactor website depth data connector for stability, speed, & readability
  • 0311525 Merge branch 'master' into 1190-feat-website-scraping-depth
  • b7f8c9d Merge branch 'master' into 1190-feat-website-scraping-depth
  • 9add7cc patch: remove console log

📊 Changes

8 files changed (+356 additions, -0 deletions)

View changed files

📝 collector/extensions/index.js (+20 -0)
collector/utils/extensions/WebsiteDepth/index.js (+153 -0)
📝 frontend/src/components/DataConnectorOption/media/index.js (+2 -0)
frontend/src/components/DataConnectorOption/media/link.svg (+1 -0)
frontend/src/components/Modals/MangeWorkspace/DataConnectors/Connectors/WebsiteDepth/index.jsx (+134 -0)
📝 frontend/src/components/Modals/MangeWorkspace/DataConnectors/index.jsx (+7 -0)
📝 frontend/src/models/dataConnector.js (+18 -0)
📝 server/endpoints/extensions/index.js (+21 -0)

📄 Description

Pull Request Type

  • feat
  • 🐛 fix
  • ♻️ refactor
  • 💄 style
  • 🔨 chore
  • 📝 docs

Relevant Issues

resolves #1190

What is in this change?

  • Create data connector that will scrape to X depth of links on site
  • Only finds links with matching domain name on site to scrape only links that are on the same website

Additional Information

Developer Validations

  • I ran yarn lint from the root of the repo & committed changes
  • Relevant documentation has been updated
  • I have tested my code functionality
  • Docker build succeeds locally

🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/Mintplex-Labs/anything-llm/pull/1191 **Author:** [@shatfield4](https://github.com/shatfield4) **Created:** 4/25/2024 **Status:** ✅ Merged **Merged:** 5/14/2024 **Merged by:** [@timothycarambat](https://github.com/timothycarambat) **Base:** `master` ← **Head:** `1190-feat-website-scraping-depth` --- ### 📝 Commits (9) - [`0f157cf`](https://github.com/Mintplex-Labs/anything-llm/commit/0f157cfde545cdee5aa883a0eefce4fe9ee6a3fe) WIP website depth scraping, (sort of works) - [`a2a3104`](https://github.com/Mintplex-Labs/anything-llm/commit/a2a31049285b530bb21747ff8326f64eb78380fc) website depth data connector stable + add maxLinks option - [`b62327f`](https://github.com/Mintplex-Labs/anything-llm/commit/b62327f80a3875917ae827af89f6eb98cfebde9e) Merge branch 'master' into 1190-feat-website-scraping-depth - [`d7d3646`](https://github.com/Mintplex-Labs/anything-llm/commit/d7d36460b080f4a60feda37fdd1a9ff3785a8a39) linting + loading small ui tweak - [`7d11401`](https://github.com/Mintplex-Labs/anything-llm/commit/7d1140190a8f3213298a8420f915d3f4f54f0c08) Merge branch 'master' into 1190-feat-website-scraping-depth - [`b3b394f`](https://github.com/Mintplex-Labs/anything-llm/commit/b3b394fab8bd2e1db379c90c5a4822a383b30982) refactor website depth data connector for stability, speed, & readability - [`0311525`](https://github.com/Mintplex-Labs/anything-llm/commit/0311525363254eebec279a12ce6b784f4675a78c) Merge branch 'master' into 1190-feat-website-scraping-depth - [`b7f8c9d`](https://github.com/Mintplex-Labs/anything-llm/commit/b7f8c9d7a22110bd36951f9375ca4c43563d39a7) Merge branch 'master' into 1190-feat-website-scraping-depth - [`9add7cc`](https://github.com/Mintplex-Labs/anything-llm/commit/9add7cc4278f78f96ff9a5a26864803a28a54d24) patch: remove console log ### 📊 Changes **8 files changed** (+356 additions, -0 deletions) <details> <summary>View changed files</summary> 📝 `collector/extensions/index.js` (+20 -0) ➕ `collector/utils/extensions/WebsiteDepth/index.js` (+153 -0) 📝 `frontend/src/components/DataConnectorOption/media/index.js` (+2 -0) ➕ `frontend/src/components/DataConnectorOption/media/link.svg` (+1 -0) ➕ `frontend/src/components/Modals/MangeWorkspace/DataConnectors/Connectors/WebsiteDepth/index.jsx` (+134 -0) 📝 `frontend/src/components/Modals/MangeWorkspace/DataConnectors/index.jsx` (+7 -0) 📝 `frontend/src/models/dataConnector.js` (+18 -0) 📝 `server/endpoints/extensions/index.js` (+21 -0) </details> ### 📄 Description ### Pull Request Type <!-- For change type, change [ ] to [x]. --> - [x] ✨ feat - [ ] 🐛 fix - [ ] ♻️ refactor - [ ] 💄 style - [ ] 🔨 chore - [ ] 📝 docs ### Relevant Issues <!-- Use "resolves #xxx" to auto resolve on merge. Otherwise, please use "connect #xxx" --> resolves #1190 ### What is in this change? <!-- Describe the changes in this PR that are impactful to the repo. --> - Create data connector that will scrape to X depth of links on site - Only finds links with matching domain name on site to scrape only links that are on the same website ### Additional Information <!-- Add any other context about the Pull Request here that was not captured above. --> ### Developer Validations <!-- All of the applicable items should be checked. --> - [x] I ran `yarn lint` from the root of the repo & committed changes - [x] Relevant documentation has been updated - [x] I have tested my code functionality - [x] Docker build succeeds locally --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
yindo added the pull-request label 2026-02-22 18:34:09 -05:00
yindo closed this issue 2026-02-22 18:34:09 -05:00
yindo changed title from [PR #1191] [FEAT] Website depth scraping data connector to [PR #1191] [MERGED] [FEAT] Website depth scraping data connector 2026-06-05 15:14:21 -04:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: Mintplex-Labs/anything-llm#3616