hastysite.nim
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 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 |
import json, strutils, os, sequtils, tables, critbits, streams, parsecfg, logging {.passL: "-Lpackages/hastyscribe/vendor".} import packages/min/min, packages/hastyscribe/hastyscribe, packages/moustachu/src/moustachu import config type HastyDirs = object assets*: string contents*: string templates*: string output*: string temp*: string tempContents: string scripts*: string HastyFiles = object rules*: string metadata: string contents: seq[JsonNode] assets: seq[JsonNode] HastySite* = object settings*: JsonNode metadata*: JsonNode scripts*: JsonNode dirs*: HastyDirs files*: HastyFiles NoMetadataException* = ref Exception DictionaryRequiredException* = ref Exception MetadataRequiredException* = ref Exception const SCRIPT_BUILD = "./scripts/build.min".slurp const SCRIPT_CLEAN = "./scripts/clean.min".slurp #### Helper Functions proc preprocessContent(file, dir: string, obj: var JsonNode): string = let fileid = file.replace(dir, "") var f: File discard f.open(file) var s, cfg = "" result = "" var delimiter = 0 try: while f.readLine(s): if delimiter >= 2: result &= s&"\n" else: if s.startsWith("----"): delimiter.inc else: cfg &= s&"\n" except: discard if not obj.hasKey("contents"): obj["contents"] = newJObject() var meta = newJObject(); if delimiter < 2: result = cfg else: try: let ss = newStringStream(cfg) var p: CfgParser p.open(ss, file) while true: var e = next(p) case e.kind of cfgEof: break of cfgKeyValuePair: meta[e.key] = newJString(e.value) of cfgError: warn e.msg else: discard p.close() except: meta = newJObject() meta["path"] = %fileid meta["id"] = %fileid.changeFileExt("") meta["ext"] = %fileid.splitFile.ext obj["contents"][fileid] = meta f.close() proc get(json: JsonNode, key, default: string): string = if json.hasKey(key): return json[key].getStr else: return default proc contentMetadata(f, dir: string, meta: JsonNode): JsonNode = result = newJObject() let fdata = f.splitFile let path = f.replace(dir & DirSep, "") if meta.hasKey("contents") and meta["contents"].hasKey(path): for key, value in meta["contents"][path].pairs: result[key] = value result["path"] = %path result["type"] = %"content" result["id"] = %path.changeFileExt("") result["ext"] = %fdata.ext proc assetMetadata(f, dir: string): JsonNode = result = newJObject() let fdata = f.splitFile let path = f.replace(dir & DirSep, "") result["path"] = %path result["type"] = %"asset" result["id"] = %path.changeFileExt("") result["ext"] = %fdata.ext proc hastysite_module*(i: In, hs1: HastySite) proc interpret(hs: HastySite, file: string) = var i = newMinInterpreter(file, file.parentDir) i.hastysite_module(hs) i.interpret(newFileStream(file, fmRead)) #### Main Functions proc newHastySite*(file: string): HastySite = let json = file.parseFile() result.settings = json result.dirs.assets = json.get("assets", "assets") result.dirs.contents = json.get("contents", "contents") result.dirs.templates = json.get("templates", "templates") result.dirs.output = json.get("output", "output") result.dirs.temp = json.get("temp", "temp") result.dirs.tempContents = result.dirs.temp / result.dirs.contents result.dirs.scripts = json.get("scripts", "scripts") result.files.rules = json.get("rules", "rules.min") result.files.metadata = result.dirs.temp / "metadata.json" result.scripts = newJObject() for f in result.dirs.scripts.walkDir(true): let path = result.dirs.scripts/f.path let file = path.open() let desc = file.readLine.replace(";", "") let key = f.path.replace(".min", "") file.close() result.scripts[key] = %desc proc preprocess*(hs: var HastySite) = var meta = newJObject() for f in hs.dirs.contents.walkDirRec(): if f.isHidden: continue let content = f.preprocessContent(hs.dirs.contents & DirSep, meta) let dest = hs.dirs.temp/f dest.parentDir.createDir dest.writeFile(content) hs.files.metadata.writeFile(meta.pretty) hs.metadata = hs.files.metadata.parseFile let contents = toSeq(hs.dirs.tempContents.walkDirRec()) let assets = toSeq(hs.dirs.assets.walkDirRec()) let contentDir = hs.dirs.tempContents let assetDir = hs.dirs.assets hs.files.contents = contents.map(proc (f: string): JsonNode = return contentMetadata(f, contentDir, meta)) hs.files.assets = assets.map(proc (f: string): JsonNode = return assetMetadata(f, assetDir)) proc init*(dir: string) = var json = newJObject() json["contents"] = %"contents" json["assets"] = %"assets" json["templates"] = %"templates" json["temp"] = %"temp" json["output"] = %"output" json["scripts"] = %"scripts" for key, value in json.pairs: createDir(dir/value.getStr) json["title"] = %"My Web Site" json["rules"] = %"rules.min" writeFile(dir/json["rules"].getStr, "") writeFile(dir/"settings.json", json.pretty) writeFile(dir/"scripts/build.min", SCRIPT_BUILD) writeFile(dir/"scripts/clean.min", SCRIPT_CLEAN) #### min Library proc hastysite_module*(i: In, hs1: HastySite) = var hs = hs1 let def = i.define() def.symbol("preprocess") do (i: In): hs.preprocess() def.symbol("process-rules") do (i: In): hs.interpret(hs.files.rules) def.symbol("clean-output") do (i: In): hs.dirs.output.removeDir def.symbol("clean-temp") do (i: In): hs.dirs.temp.removeDir def.symbol("metadata") do (i: In): i.push i.fromJson(hs.metadata) def.symbol("settings") do (i: In): i.push i.fromJson(hs.settings) def.symbol("contents") do (i: In): var contents = newSeq[MinValue](0) for j in hs.files.contents: contents.add i.fromJson(j) i.push contents.newVal(i.scope) def.symbol("assets") do (i: In): var assets = newSeq[MinValue](0) for j in hs.files.assets: assets.add i.fromJson(j) i.push assets.newVal(i.scope) def.symbol("output") do (i: In): i.push hs.dirs.output.newVal def.symbol("input-fread") do (i: In): var vals = i.expect(["dict"]) var d = vals[0] let t = d.dget("type".newVal).getString let path = d.dget("path".newVal).getString var contents = "" if t == "content": contents = readFile(hs.dirs.tempContents/path) else: contents = readFile(hs.dirs.assets/path) i.push contents.newVal def.symbol("output-fwrite") do (i: In): var vals = i.expect(["dict"]) var d = vals[0] let id = d.dget("id".newVal).getString let ext = d.dget("ext".newVal).getString var contents = "" try: contents = d.dget("contents".newVal).getString except: raise MetadataRequiredException(msg: "Metadata key 'contents' not found in dictionary.") let outfile = hs.dirs.output/id&ext outfile.parentDir.createDir writeFile(outfile, contents) def.symbol("copy2output") do (i: In): var vals = i.expect(["dict"]) var d = vals[0] let t = d.dget("type".newVal).getString let path = d.dget("path".newVal).getString var infile, outfile: string if t == "content": infile = hs.dirs.tempContents/path outfile = hs.dirs.output/path else: infile = hs.dirs.assets/path outfile = hs.dirs.output/path notice " - Copying: ", infile, " -> ", outfile outfile.parentDir.createDir copyFileWithPermissions(infile, outfile) def.symbol("mustache") do (i: In): var vals = i.expect(["dict", "string"]) let c = vals[0] let t = vals[1] let ctx = newContext(%c) let tplname = t.getString & ".mustache" let tpl = readFile(hs.dirs.templates/tplname) i.push tpl.render(ctx, hs.dirs.templates).newval def.symbol("markdown") do (i: In): var vals = i.expect(["dict", "string"]) let c = vals[0] let t = vals[1] let options = HastyOptions(toc: false, output: nil, css: nil, watermark: nil, fragment: true) var fields = initTable[string, proc():string]() for item in c.qVal: fields[item.qVal[0].getString] = proc(): string = return $$item.qVal[1] var hastyscribe = newHastyScribe(options, fields) let file = t.getString() i.push hastyscribe.compileFragment(file, hs.dirs.contents).newVal def.finalize("hastysite") when isMainModule: import parseopt2 setLogFilter(lvlNotice) proc usage(scripts: bool, hs: HastySite): string = var text = """ $1 v$2 - a tiny static site generator (c) 2016-2017 Fabio Cevasco Usage: hastysite command Commands: init - Initializes a new site in the current directory. """ if scripts: for key, value in hs.scripts.pairs: text &= " " & key & " - " & value.getStr & "\n" text &= """ Options: -h, --help Print this help -l, --loglevel Sets the log level (one of: debug, info, notice, warn, error, fatal). Default: notice -v, --version Print the program version""" % [appname, version] return text let pwd = getCurrentDir() let cfg = pwd/"settings.json" var hs: HastySite var scripts = false if cfg.fileExists: hs = newHastySite(cfg) scripts = true for kind, key, val in getopt(): case kind: of cmdArgument: case key: of "init": pwd.init() else: if scripts: if hs.scripts.hasKey(key): hs.interpret(hs.dirs.scripts/key & ".min") else: fatal "Script '$1' not found" % key else: fatal "This directory does not contain a valid HastySite site" of cmdLongOption, cmdShortOption: case key: of "loglevel", "l": var v = val setLogLevel(v) of "help", "h": echo usage(scripts, hs) quit(0) of "version", "v": echo version quit(0) else: discard else: discard |