Improve note export

This commit is contained in:
Loïc Guégan 2024-04-19 10:51:04 +02:00
parent e7d21b74a6
commit aec3a51ab4
2 changed files with 15 additions and 29 deletions

View file

@ -1,49 +1,35 @@
from pnote.tools.tool import Tool from pnote.tools.tool import Tool
import argparse, os, sys import argparse, os, sys
from datetime import datetime
class ToolExport(Tool): class ToolExport(Tool):
def __init__(self): def __init__(self):
self.format_file=None self.template_file=None
self.date_format="%s"
def add_parser(self,subparsers): def add_parser(self,subparsers):
p = subparsers.add_parser("export", description="Export notes from subpaths in stdin") p = subparsers.add_parser("export", description="Export notes from subpaths in stdin")
p.add_argument("--format-file", help="Export notes according to a format file") p.add_argument("--template", help="Export notes following a template file")
p.add_argument("--date-format", help="Specify a format use by date in the output")
def catsubpath(self,project,subpath):
if self.format_file is not None:
with open(project.getpath(subpath),"r") as noteFile:
with open(self.format_file,"r") as tplFile:
variables={
"content":noteFile.read(),
"created":project.getfileinfo(subpath,"created"),
"added":project.getfileinfo(subpath,"added"),
"id":project.getfileinfo(subpath,"id"),
"hostname":project.getfileinfo(subpath,"hostname"),
"platform":project.getfileinfo(subpath,"platform"),
"tags":project.listtags(subpath),
"subpath":subpath}
for line in tplFile:
print(line.format(**variables),end="")
else:
with open(project.getpath(subpath),"r") as fp:
for line in fp:
print(line,end="")
def run(self, project, args): def run(self, project, args):
if args.format_file: if args.date_format:
if not os.path.exists(args.format_file): self.date_format=args.date_format
print("Format file not found: {}".format(args.format_file))
if args.template:
if not os.path.exists(args.template):
print("Template file not found: {}".format(args.template))
exit(1) exit(1)
self.format_file=args.format_file self.template_file=args.template
for line in sys.stdin: for line in sys.stdin:
subpath=line.rstrip() subpath=line.rstrip()
with open(project.getpath(subpath),"r") as noteFile: with open(project.getpath(subpath),"r") as noteFile:
with open(self.format_file,"r") as tplFile: with open(self.template_file,"r") as tplFile:
variables={ variables={
"content":noteFile.read(), "content":noteFile.read(),
"created":project.getfileinfo(subpath,"created"), "created":datetime.fromtimestamp(project.getfileinfo(subpath,"created")).strftime(self.date_format),
"added":project.getfileinfo(subpath,"added"), "added":datetime.fromtimestamp(project.getfileinfo(subpath,"added")).strftime(self.date_format),
"id":project.getfileinfo(subpath,"id"), "id":project.getfileinfo(subpath,"id"),
"hostname":project.getfileinfo(subpath,"hostname"), "hostname":project.getfileinfo(subpath,"hostname"),
"platform":project.getfileinfo(subpath,"platform"), "platform":project.getfileinfo(subpath,"platform"),