mirror of
https://github.com/NotAShelf/mdlinkt.git
synced 2024-11-01 19:11:18 +00:00
cocurrency
This commit is contained in:
parent
a3ff066c29
commit
5fe48627b7
2 changed files with 10063 additions and 35 deletions
42
main.go
42
main.go
|
@ -8,6 +8,7 @@ import (
|
||||||
"os"
|
"os"
|
||||||
"regexp"
|
"regexp"
|
||||||
"strings"
|
"strings"
|
||||||
|
"sync"
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
"github.com/fatih/color"
|
"github.com/fatih/color"
|
||||||
|
@ -19,7 +20,11 @@ type LinkCheckResult struct {
|
||||||
StatusCode int
|
StatusCode int
|
||||||
}
|
}
|
||||||
|
|
||||||
|
var wg sync.WaitGroup
|
||||||
|
var verboseMode bool
|
||||||
|
|
||||||
func logWithColor(level string, msg string, args ...interface{}) {
|
func logWithColor(level string, msg string, args ...interface{}) {
|
||||||
|
if verboseMode {
|
||||||
timestamp := time.Now().Format("2006/01/02 15:04:05")
|
timestamp := time.Now().Format("2006/01/02 15:04:05")
|
||||||
colorFunc := color.New(color.FgWhite).SprintFunc()
|
colorFunc := color.New(color.FgWhite).SprintFunc()
|
||||||
switch level {
|
switch level {
|
||||||
|
@ -31,14 +36,17 @@ func logWithColor(level string, msg string, args ...interface{}) {
|
||||||
colorFunc = color.New(color.FgCyan).SprintFunc()
|
colorFunc = color.New(color.FgCyan).SprintFunc()
|
||||||
}
|
}
|
||||||
fmt.Printf("%s %s %s\n", timestamp, colorFunc(level), fmt.Sprintf(msg, args...))
|
fmt.Printf("%s %s %s\n", timestamp, colorFunc(level), fmt.Sprintf(msg, args...))
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
func main() {
|
func main() {
|
||||||
filename := flag.String("file", "", "Markdown file to test")
|
filename := flag.String("file", "", "Markdown file to test")
|
||||||
verbose := flag.Bool("verbose", false, "Enable verbose mode")
|
verboseFlag := flag.Bool("verbose", false, "Enable verbose mode")
|
||||||
failedOnly := flag.Bool("failed-only", false, "Return only failed links")
|
failedOnly := flag.Bool("failed-only", false, "Return only failed links")
|
||||||
flag.Parse()
|
flag.Parse()
|
||||||
|
|
||||||
|
verboseMode = *verboseFlag
|
||||||
|
|
||||||
if *filename == "" {
|
if *filename == "" {
|
||||||
logWithColor("INFO", "Please provide a markdown file.")
|
logWithColor("INFO", "Please provide a markdown file.")
|
||||||
os.Exit(1)
|
os.Exit(1)
|
||||||
|
@ -63,20 +71,23 @@ func main() {
|
||||||
re := regexp.MustCompile(`\[(.*?)\]\((.*?)\)`)
|
re := regexp.MustCompile(`\[(.*?)\]\((.*?)\)`)
|
||||||
|
|
||||||
results := []LinkCheckResult{}
|
results := []LinkCheckResult{}
|
||||||
|
resChan := make(chan LinkCheckResult, 1000) // buffered channel for storing responses
|
||||||
|
|
||||||
for scanner.Scan() {
|
for scanner.Scan() {
|
||||||
line := scanner.Text()
|
line := scanner.Text()
|
||||||
matches := re.FindAllStringSubmatch(line, -1)
|
matches := re.FindAllStringSubmatch(line, -1)
|
||||||
for _, match := range matches {
|
for _, match := range matches {
|
||||||
link := strings.TrimSpace(match[2])
|
wg.Add(1)
|
||||||
|
go func(link string, verboseFlag *bool) {
|
||||||
|
defer wg.Done()
|
||||||
resp, err := http.Head(link)
|
resp, err := http.Head(link)
|
||||||
if err != nil || resp == nil {
|
if err != nil || resp == nil {
|
||||||
logWithColor("ERROR", "Invalid link: %s", link)
|
logWithColor("ERROR", "Invalid link: %s", link)
|
||||||
results = append(results, LinkCheckResult{
|
resChan <- LinkCheckResult{
|
||||||
Link: link,
|
Link: link,
|
||||||
IsValid: false,
|
IsValid: false,
|
||||||
StatusCode: http.StatusBadRequest,
|
StatusCode: http.StatusBadRequest,
|
||||||
})
|
}
|
||||||
} else {
|
} else {
|
||||||
isValid := resp.StatusCode == http.StatusOK
|
isValid := resp.StatusCode == http.StatusOK
|
||||||
result := LinkCheckResult{
|
result := LinkCheckResult{
|
||||||
|
@ -84,8 +95,8 @@ func main() {
|
||||||
IsValid: isValid,
|
IsValid: isValid,
|
||||||
StatusCode: resp.StatusCode,
|
StatusCode: resp.StatusCode,
|
||||||
}
|
}
|
||||||
results = append(results, result)
|
resChan <- result
|
||||||
if *verbose || (!*failedOnly && !isValid) {
|
if *verboseFlag || (!*failedOnly && !isValid) {
|
||||||
statusColor := color.GreenString
|
statusColor := color.GreenString
|
||||||
if !isValid {
|
if !isValid {
|
||||||
statusColor = color.RedString
|
statusColor = color.RedString
|
||||||
|
@ -93,15 +104,23 @@ func main() {
|
||||||
logWithColor("INFO", "%s: %s", link, statusColor("%d", resp.StatusCode))
|
logWithColor("INFO", "%s: %s", link, statusColor("%d", resp.StatusCode))
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}(strings.TrimSpace(match[2]), verboseFlag)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
wg.Wait()
|
||||||
|
close(resChan)
|
||||||
|
|
||||||
|
for res := range resChan {
|
||||||
|
results = append(results, res)
|
||||||
|
}
|
||||||
|
|
||||||
if err := scanner.Err(); err != nil {
|
if err := scanner.Err(); err != nil {
|
||||||
logWithColor("ERROR", "Error scanning file: %v", err)
|
logWithColor("ERROR", "Error scanning file: %v", err)
|
||||||
os.Exit(1)
|
os.Exit(1)
|
||||||
}
|
}
|
||||||
|
|
||||||
// Print summary
|
// summary
|
||||||
validCount := 0
|
validCount := 0
|
||||||
invalidCount := 0
|
invalidCount := 0
|
||||||
for _, result := range results {
|
for _, result := range results {
|
||||||
|
@ -115,6 +134,7 @@ func main() {
|
||||||
if invalidCount > 0 {
|
if invalidCount > 0 {
|
||||||
summaryColor = color.RedString
|
summaryColor = color.RedString
|
||||||
}
|
}
|
||||||
|
|
||||||
logWithColor("INFO", summaryColor("Summary: %d valid links, %d invalid links"), validCount, invalidCount)
|
logWithColor("INFO", summaryColor("Summary: %d valid links, %d invalid links"), validCount, invalidCount)
|
||||||
|
|
||||||
if *failedOnly {
|
if *failedOnly {
|
||||||
|
@ -123,6 +143,14 @@ func main() {
|
||||||
logWithColor("ERROR", "Failed link: %s", result.Link)
|
logWithColor("ERROR", "Failed link: %s", result.Link)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
} else if *verboseFlag {
|
||||||
|
for _, result := range results {
|
||||||
|
statusColor := color.GreenString
|
||||||
|
if !result.IsValid {
|
||||||
|
statusColor = color.RedString
|
||||||
|
}
|
||||||
|
logWithColor("INFO", "%s: %s", result.Link, statusColor("%d", result.StatusCode))
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if invalidCount > 0 {
|
if invalidCount > 0 {
|
||||||
|
|
Loading…
Reference in a new issue