aboutsummaryrefslogtreecommitdiff
path: root/size.sh
blob: f50689dbf5c18169bd328d7b2a9f0d895b30f968 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
#!/bin/bash

if [ $# -eq 0 ]; then
    echo "Usage: $0 <folder_path>"
    exit 1
fi

folder_path=$1

# Timeout value in seconds (adjust as needed)
url_timeout=10

# Loop through each markdown file in the specified folder
for file in "$folder_path"/*.md; do
    if [ -f "$file" ]; then
        # Extract URL from "pageurl:" YAML
        url=$(grep "pageurl:" "$file" | awk '{print $2}')

        if [ -n "$url" ]; then
            download_dir=$(mktemp -d)

            # Use curl with timeout to download the page and its resources, redirecting logs to /dev/null
            if gtimeout "$url_timeout" curl -L --create-dirs --output "$download_dir/index.html" "$url" > /dev/null 2>&1; then
                # Display the size of each downloaded resource
                echo "Resource sizes for $url:"
                total_size_bytes=0

                # Iterate over files directly in the temporary download directory
                for resource_file in "$download_dir"/*; do
                    if [ -f "$resource_file" ]; then
                        size_bytes=$(stat -f%z "$resource_file")
                        total_size_bytes=$((total_size_bytes + size_bytes))
                        echo "$resource_file: $size_bytes bytes"
                    fi
                done

                # Convert total size to kilobytes
                total_size_kb=$((total_size_bytes / 1024))

                # Update the "size:" YAML with the total size
                awk -v total_size_bytes="$total_size_bytes" '/size:/ {sub(/size:.*/, "size: " total_size_bytes)} 1' "$file" > "$file.tmp" && mv "$file.tmp" "$file"

                # Clean up the temporary download directory
                rm -r "$download_dir"

                echo "Total size of all resources updated in $file: $total_size_kb kilobytes"
            else
                echo "Error: Timeout while checking URL in $file"
            fi
        else
            echo "Error: URL not found in $file"
        fi
    fi
done