使用metaweblog API實現通用博客發佈 之 本地圖片自動上傳以及替換路徑

使用metaweblog API實現通用博客發佈 之 本地圖片自動上傳以及替換路徑

經過metaweblog API 發佈博文的時候,因爲markdown中的圖片路徑是本地路徑,將致使發佈的文章圖片不能正確查看。兩種通用的辦法是: 1 將圖片發佈到專用的圖片服務器,而後將連接替換; 2 將圖片發佈到博客平臺,而後將連接替換。python

這篇小文件探討的是第二種方式。web

1 查找markdown 文件中的圖片

使用正則表達式進行查找正則表達式

def matchMarkdownLinks(post):
  return re.compile('!\\[.*?\\]\\((.*?)\\)').findall(post)

2 判斷連接是不是本地連接

使用正則表達式判斷是不是本地連接,若是已是網絡連接,就不用進行上傳操做了api

def isNetLink(link):
  return re.match('((http(s?))|(ftp))://.*', link)

3 判斷本地圖片格式,進行必要的轉碼

判斷圖片的壓縮格式,若是有必要,轉換成gif格式(支持透明背景)服務器

from PIL import Image

def replace_img_url(path, pictype):
  (name, suffix) = os.path.splitext(os.path.basename(path))
  if not pictype in ["gif","jpg"]:
    img = Image.open(path)
    localfile = "%s.gif"%(name)
    img.save(localfile, 'gif')
    with open(localfile, 'rb') as f:
      url = client.newMediaObject({
        "bits": f.read(),
        "name": os.path.basename(localfile),
        "type": "image/gif"
      })
    os.remove(localfile) #remove local temp file
    return url
  else:
    with open(path, 'rb') as f:
      url = client.newMediaObject({
        "bits": f.read(),
        "name": os.path.basename(path),
        "type": "image/" + suffix
      })
    return url

其中的client就是上篇文章中寫的metaweblog 客戶端。 轉換圖片時,使用了PIL圖片庫markdown

4 總體流程

首先使用正則獲取全部連接,判斷連接是不是本地連接
而後判斷本地連接文件是否存在,使用 imghdr 模塊猜想圖片格式
最後上傳本地圖片,替換連接地址網絡

import imghdr

def fixMarkdownLink(md_file):
  with open(md_file, 'r', encoding="utf-8") as f:
    post = f.read()
    matchs = matchMarkdownLinks(post)
    print(matchs)
    if matchs and len(matchs) > 0:
      for link in matchs:
        if not isNetLink(link):
          localPath = link
          if not os.path.exists(localPath) or not os.path.isfile(localPath):
            sep = os.path.sep if (md_file.find(os.path.sep) >= 0) else ("\\" if (md_file.find("\\") >= 0) else "/")
            localPath = md_file[:md_file.rfind(sep)+1] + localPath
          if os.path.exists(localPath) and os.path.isfile(localPath):
            imgtype = imghdr.what(localPath)
            if imgtype:
              file_url = replace_img_url(localPath, imgtype)
              if file_url and file_url["url"]:
                post = post.replace(link, file_url["url"])    # 替換md文件中的地址
    return post

未完待續,下篇繼續探討修改本地markdown文件後的自動更新方案post

相關文章
相關標籤/搜索