Wordpressからのお引っ越し

引っ越す

wordpress to hugo へのバックアップ。

ファイルサイズ毎に画像が生まれるの渋い

ふぇぇ・・・ ![file_size](スクリーンショット 2020-02-09 11.55.50.png)

消す。

正規表現を用いて、リサイズされた画像を消す。

 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
import os
import re

ROOT_PATH = '../static/img'


def process(file_path):
    if is_delete_target(file_path):
        os.remove(file_path)


def is_delete_target(file_path: str) -> bool:
    regex = r'\.\./static/img/\d+/\d+/.+-[0-9]{2,4}x[0-9]{2,4}\.(jpg|png)'
    m = re.match(regex, file_path)
    if m:
        return True
    return False


def recursive_file_check(path):
    if os.path.isdir(path):
        files = os.listdir(path)
        for file in files:
            recursive_file_check(path + "/" + file)
    else:
        process(path)


if __name__ == '__main__':
    recursive_file_check(ROOT_PATH)

リサイズされた画像を参照している記事を、修正する

どっかにリサイズされた画像を指すPathが入っているはずなので直していく。

 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
import os
import re
import traceback

ROOT_PATH = '../content/posts/'

def recursive_file_check(path: str):
    if os.path.isdir(path):
        files = os.listdir(path)
        for file in files:
            recursive_file_check(path + file)
    else:
        parse_article(path)


# ブログ記事のmarkdownファイルをstringのListに変換する
def parse_article(file_path: str):
    # domain parse
    regex_domain = 'https://reud.net/wp-content/uploads/'
    regex_domain2 = 'https://rrr-archives.work/wp-content/uploads/'
    to = 'https://raw.githubusercontent.com/reud/prosaic-dustbox/master/static/img/'
    with open(file_path) as f:
        filedata = f.read()
    filedata = filedata.replace(regex_domain, to)
    filedata = filedata.replace(regex_domain2, to)
    with open(file_path, 'w', encoding='utf-8') as f:
        f.write(filedata)

    # fix path
    article_file_path = r'.*img/.*/.*/((.*)-.*x.*\.(jpg|png))'
    write_lines = []
    with open(file_path) as f:
        line_data = f.readline()
        while line_data:
            m = re.match(article_file_path, line_data)
            if m:
                old_file_name = m.group(1)
                new_file_name = m.group(2)
                extension = m.group(3)
                print(f'{old_file_name} to {new_file_name}.{extension}')
                line_data = line_data.replace(old_file_name, f'{new_file_name}.{extension}')
            write_lines.append(line_data)
            line_data = f.readline()

    with open(file_path, 'w', encoding='utf-8') as f:
        f.writelines(write_lines)


if __name__ == '__main__':
    recursive_file_check(ROOT_PATH)

これで多分直った。

Licensed under CC BY-NC-ND 4.0
Built with Hugo
テーマ StackJimmy によって設計されています。