mirror of https://github.com/patacrep/patacrep.git
Engine for LaTeX songbooks
http://www.patacrep.com
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
49 lines
1.4 KiB
49 lines
1.4 KiB
#!/usr/bin/env python
|
|
# -*- coding: utf-8 -*-
|
|
|
|
"""Song management."""
|
|
|
|
from unidecode import unidecode
|
|
import locale
|
|
import re
|
|
|
|
from songbook_core.authors import processauthors
|
|
from songbook_core.plastex import parsetex
|
|
|
|
# pylint: disable=too-few-public-methods
|
|
class Song(object):
|
|
"""Song management"""
|
|
|
|
def __init__(self, filename, config):
|
|
# Data extraction from the song with plastex
|
|
data = parsetex(filename)
|
|
self.titles = data['titles']
|
|
self.unprefixed_titles = [
|
|
unprefixed_title(
|
|
unidecode(unicode(title, "utf-8")),
|
|
config['titleprefixwords']
|
|
)
|
|
for title
|
|
in self.titles
|
|
]
|
|
self.args = data['args']
|
|
self.path = filename
|
|
self.languages = data['languages']
|
|
if "by" in self.args.keys():
|
|
self.authors = processauthors(self.args["by"], **config["authwords"])
|
|
else:
|
|
self.authors = []
|
|
|
|
def __repr__(self):
|
|
return repr((self.titles, self.args, self.path))
|
|
|
|
def unprefixed_title(title, prefixes):
|
|
"""Remove the first prefix of the list in the beginning of title (if any).
|
|
"""
|
|
for prefix in prefixes:
|
|
match = re.compile(r"^(%s)\b\s*(.*)$" % prefix).match(title)
|
|
if match:
|
|
return match.group(2)
|
|
return title
|
|
|
|
|
|
|