aboutsummaryrefslogtreecommitdiff
path: root/jarink.go
AgeCommit message (Collapse)Author
2026-02-12Release jarink 0.3.0 (2026-02-12)HEADv0.3.0maindevShulhan
**🌼 brokenlinks: refactoring the logic, simplify the code** Previously, we made the scan logic to run in multiple goroutine with one channel to push and consume the result and another channel to push and pop link to be processed. The logic is a very complicated code, making it hard to read and debug. These changes refactoring it to use single goroutine that push and pop link from/to a slices, as queue. Another refactoring is in where we store the link. Previously, we have [jarink.Link], [brokenlinks.Broken], and [brokenlinks.linkQueue] to store the metadata for a link. These release unified them into struct [jarink.Link]. **🌱 brokenlinks: print the progress to stderr** Each time the scan start, new queue add, fetching start, print the message to stderr. This remove the verbose options for better user experience. **🌼 brokenlinks: improve fetch logging and decrease timeout to 10s** When fetching, print log after the fetch completed. If success, print the URL along with HTTP status code. If fail, print the URL along with the error. The timeout now reduce to 10 seconds to prevent long delay when working with broken website. **🌼 brokenlinks: mark the link in queue as seen with status code 0** This is to fix double URL being pushed to queue. Given the following queue and its parent, ---- /page2.html => /index.html /brokenPage => /index.html /brokenPage => /page2.html ---- Before scanning the second "/brokenPage" on parent page "/page2.html", check if its seen first to get the status code before we run the scan. This allow jarink report "/brokenPage" as broken link for both pages, not just in "/index.html". **🌼 brokenlinks: skip parsing non-HTML page** If the response Content-type return other than "text/html", skip parsing the content and return immediately. We also skip processing "mailto\:" URL. **🌼 brokenlinks: make link that return HTML always end with slash** If parent URL like "/page" return the body as HTML page, the URL should be end with slash to make the relative links inside it works when joined with the parent URL. **🌱 brokenlinks: store the anchor or image source in link** In the struct `Link`, we add field `Value` that store the `href` from A element or `src` from IMG element. This allow us to debug any error during scan, especially joining path and link. **🌼 brokenlinks: fix possible panic in markAsBroken** If the Link does not have `parentUrl`, set the parent URL using the link URL itself. This only happened if the target URL that we will scan return an error.
2026-01-22all: refactoring, use single struct to represent LinkShulhan
Previously, have [jarink.Link], [brokenlinks.Broken], and [brokenlinks.linkQueue] to store the metadata for a link. These changes unified them into struct [jarink.Link].
2026-01-21all: use markdown for formatting READMEShulhan
This is so the README can be rendered in pkg.go.dev and in git.sr.ht. While at it, group documentation files under _doc/ directory.
2025-12-27Release jarink 0.2.1 (2025-12-27)v0.2.1Shulhan
**🌼 brokenlinks: fix infinite loop on unknown host** On link with invalid domain, it should break and return the error immediately.
2025-06-27cmd/jarink: add "version" commandShulhan
The version command print the version of the program.
2025-06-16all: add comment on GoEmbedReadme variableShulhan
2025-06-16all: rename README.adoc back to READMEShulhan
This is for git.sr.ht to be able to render the README.
2025-06-12all: rename README to README.adocShulhan
2025-06-01all: go embed the README and use it on the CLI for help commandShulhan