-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcopy_docs.py
193 lines (148 loc) · 5.46 KB
/
copy_docs.py
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
from AnyQt.QtWidgets import QApplication
from orangecanvas.canvas.items import NodeItem
from orangecanvas.registry import (
WidgetDescription,
CategoryDescription,
)
from PyQt6.QtGui import QColor, QPainter, QImage
from PyQt6.QtCore import QRectF, QSize, QSizeF, QPointF
from AnyQt.QtWidgets import QGraphicsScene
import shutil
import json
import os
from os import path
import re
import sys
from collections import defaultdict
from urllib.parse import urlparse
def is_absolute(url):
return bool(urlparse(url).netloc)
def front_matter(widget):
return """---
title: "%s"
category: "%s"
---
""" % (widget["title"], widget["category"])
def copy_images(name, content, source, dest):
regex_images = "!\[.*\]\((.*?)\)"
matches = re.findall(regex_images, content)
for match in matches:
if not is_absolute(match):
source_file = path.join(source, match)
dest_dir = path.dirname(path.join(dest, match))
if not path.exists(dest_dir):
os.makedirs(dest_dir)
try:
shutil.copy2(source_file, dest_dir)
except FileNotFoundError:
print("ERROR (%s): image" %
name, source_file, "does not exist")
def change_references(md_file, content, category, dest):
regex_ref = "\[.*\]\((.*?)\)"
matches_ref = re.findall(regex_ref, content)
for ref in matches_ref:
if not is_absolute(ref):
if "loading-your-data" in ref:
content = content.replace(
ref, "https://docs.biolab.si/3/visual-programming/loading-your-data/index.html")
elif ref.endswith(".md") and not ref.startswith("/"):
new = f"/widget-catalog/{category}/{ref[:-3]}"
content = content.replace(ref, new)
elif not ref.startswith("/") and not ref.startswith("/widget-catalog"):
new = f"/widget-catalog/{category}/{ref}"
if new in content:
continue
content = content.replace(ref, new)
else:
print("WARNING (%s): not handled" % md_file, ref)
return content
def save_widget_icon(
background,
icon: str,
outname: str,
export_size=QSize(100, 100),
format="png",
):
# create fake windget and category descriptions
widget_description = WidgetDescription(
"", "", icon=icon, qualified_name="orangecanvas")
category = CategoryDescription(background=background)
item = NodeItem(widget_description)
item.setWidgetCategory(category)
iconItem = item.icon_item
shapeItem = item.shapeItem
shapeSize = export_size
iconSize = QSize(int(export_size.width() * 3 / 4),
int(export_size.height() * 3 / 4))
rect = QRectF(
QPointF(-shapeSize.width() / 2, -
shapeSize.height() / 2), QSizeF(shapeSize)
)
shapeItem.setShapeRect(rect)
iconItem.setIconSize(iconSize)
iconItem.setPos(-iconSize.width() / 2, -iconSize.height() / 2)
image = QImage(export_size, QImage.Format_ARGB32)
image.fill(QColor("#00FFFFFF"))
painter = QPainter(image)
painter.setRenderHint(QPainter.Antialiasing, 1)
scene = QGraphicsScene()
scene.addItem(shapeItem)
scene.render(painter, QRectF(image.rect()), scene.sceneRect())
painter.end()
if not image.save(outname, format, 80):
print("Failed to save " + outname)
def process_widget(cat, w, webpage_json):
for c, cat_list in webpage_json:
if cat == c:
break
else:
cat_list = []
webpage_json.append((cat, cat_list))
wd = {}
wd["title"] = w["text"]
wd["category"] = cat
wd["keywords"] = w["keywords"]
wd["background"] = w["background"]
icon_svg = path.join(add_doc_path, w["icon"])
icon_png = "widget-icons/%s-%s.png" % (cat, w["text"])
icon_file = path.join("public/widget-catalog", icon_png)
if not path.exists(path.dirname(icon_file)):
os.makedirs(path.dirname(icon_file))
save_widget_icon(w["background"], icon_svg, icon_file)
wd["icon"] = icon_png
if w["doc"]:
md_file = path.join(add_doc_path, w["doc"])
md = open(md_file, "rt").read()
category = cat.lower()
category = category.replace(" ", "-")
copy_images(md_file,
md,
path.dirname(md_file),
path.join(to_location, category))
md = change_references(md_file,
md,
category,
path.join(to_location, category))
loc = path.join(to_location, category)
if not os.path.exists(loc):
os.makedirs(loc)
url = path.basename(md_file)[:-3]
with open(path.join(loc, url + ".md"), 'wt') as of:
of.write(front_matter(wd) + md)
of.close()
wd["url"] = url
cat_list.append(wd)
print("Copy script: started.")
to_location = "public/widget-catalog/"
app = QApplication([])
webpage_json = []
for add_doc_path in sys.argv[1:]:
with open(path.join(add_doc_path, "widgets.json"), 'rt') as f:
widgets_json = json.loads(f.read())
for cat, widgets in widgets_json:
for w in widgets:
process_widget(cat, w, webpage_json)
s = json.dumps(webpage_json, indent=1)
with open(path.join(to_location, 'widgets.json'), 'w') as outfile:
json.dump(webpage_json, outfile, indent=1)
print("Copy script: finished")