@ridi/epub-parser
Common EPUB2 data parser for Ridibooks services
Features
Install
npm install @ridi/epub-parser
Usage
Basic:
import { EpubParser } from '@ridi/epub-parser';
const parser = new EpubParser('./foo/bar.epub' or './unzippedPath');
parser.parse().then((book) => {
parser.readItems(book.spines).then((results) => {
...
});
...
});
with AesCryptor:
import { CryptoProvider, AesCryptor } from '@ridi/epub-parser';
const { Purpose } = CryptoProvider;
const { Mode, Padding } = AesCryptor;
class ContentCryptoProvider extends CryptoProvider {
constructor(key) {
super();
this.cryptor = new AesCryptor(Mode.ECB, { key });
}
getCryptor(filePath, purpose) {
return this.cryptor;
}
run(data, filePath, purpose) {
const cryptor = this.getAesCryptor(filePath, purpose);
const padding = Padding.AUTO;
if (purpose === Purpose.READ_IN_DIR) {
return cryptor.decrypt(data, { padding });
} else if (purpose === Purpose.WRITE) {
return cryptor.encrypt(data, { padding });
}
return data;
}
}
const cryptoProvider = new ContentCryptoProvider(key);
const parser = new EpubParser('./encrypted.epub' or './unzippedPath', cryptoProvider);
Log level setting:
import { LogLevel, ... } from '@ridi/epub-parser';
const parser = new EpubParser(, , )
parser.logger.logLevel = LogLevel.VERBOSE;
API
parse(parseOptions)
Returns Promise<EpubBook>
with:
- EpubBook: Instance with metadata, spine list, table of contents, etc.
Or throw exception.
readItem(item, readOptions)
Returns string
or Buffer
in Promise
with:
or throw exception.
readItems(items, readOptions)
Returns string[]
or Buffer[]
in Promise
with:
or throw exception.
items: Item[]
(see: Item Types)
unzip(unzipPath, overwrite)
Returns Promise<boolean>
with:
- If result is
true
, unzip is successful or has already been unzipped.
Or throw exception.
unzipPath: string
overwrite: boolean
onProgress = callback(step, totalStep, action)
Tells the progress of parser through callback
.
const { Action } = EpubParser;
parser.onProgress = (step, totalStep, action) => {
console.log(`[${action}] ${step} / ${totalStep}`);
}
Model
- name: ?string
- fileAs: ?string
- role: string (Default: Author.Roles.UNDEFINED)
- toRaw(): object
Type | Value |
---|
UNDEFINED | undefined |
UNKNOWN | unknown |
ADAPTER | adp |
ANNOTATOR | ann |
ARRANGER | arr |
ARTIST | art |
ASSOCIATEDNAME | asn |
AUTHOR | aut |
AUTHOR_IN_QUOTATIONS_OR_TEXT_EXTRACTS | aqt |
AUTHOR_OF_AFTER_WORD_OR_COLOPHON_OR_ETC | aft |
AUTHOR_OF_INTRODUCTIONOR_ETC | aui |
BIBLIOGRAPHIC_ANTECEDENT | ant |
BOOK_PRODUCER | bkp |
COLLABORATOR | clb |
COMMENTATOR | cmm |
DESIGNER | dsr |
EDITOR | edt |
ILLUSTRATOR | ill |
LYRICIST | lyr |
METADATA_CONTACT | mdc |
MUSICIAN | mus |
NARRATOR | nrt |
OTHER | oth |
PHOTOGRAPHER | pht |
PRINTER | prt |
REDACTOR | red |
REVIEWER | rev |
SPONSOR | spn |
THESIS_ADVISOR | ths |
TRANSCRIBER | trc |
TRANSLATOR | trl |
- value: ?string
- event: string (Default: DateTime.Events.UNDEFINED)
- toRaw(): object
Type | Value |
---|
UNDEFINED | undefined |
UNKNOWN | unknown |
CREATION | creation |
MODIFICATION | modification |
PUBLICATION | publication |
- value: ?string
- scheme: string (Default: Identifier.Schemes.UNDEFINED)
- toRaw(): object
Type | Value |
---|
UNDEFINED | undefined |
UNKNOWN | unknown |
DOI | doi |
ISBN | isbn |
ISBN13 | isbn13 |
ISBN10 | isbn10 |
ISSN | issn |
UUID | uuid |
URI | uri |
- name: ?string
- content: ?string
- toRaw(): object
- title: ?string
- type: string (Default: Guide.Types.UNDEFINED)
- href: ?string
- item: ?Item
- toRaw(): object
Type | Value |
---|
UNDEFINED | undefined |
UNKNOWN | unknown |
COVER | cover |
TITLE_PAGE | title-page |
TOC | toc |
INDEX | index |
GLOSSARY | glossary |
ACKNOWLEDGEMENTS | acknowledgements |
BIBLIOGRAPHY | bibliography |
COLOPHON | colophon |
COPYRIGHT_PAGE | copyright-page |
DEDICATION | dedication |
EPIGRAPH | epigraph |
FOREWORD | foreword |
LOI | loi |
LOT | lot |
NOTES | notes |
PREFACE | preface |
TEXT | text |
Item Types
- id: ?string
- href: ?string
- mediaType: ?string
- size: ?number
- isFileExists: boolean (size !== undefined)
- toRaw(): object
- style: string (Default: '')
- isCover: boolean (Default: false)
- reason: string (Default: DeadItem.Reason.UNDEFINED)
Type | Value |
---|
UNDEFINED | undefined |
UNKNOWN | unknown |
NOT_EXISTS | not_exists |
NOT_SPINE | not_spine |
NOT_NCX | not_ncx |
NOT_SUPPORT_TYPE | not_support_type |
- id: ?string
- label: ?string
- src: ?string
- anchor: ?string
- depth: number (Default: 0)
- children: NavPoint[]
- spine: ?SpineItem
- toRaw(): object
- major: number
- minor: number
- patch: number
- toString(): string
Parse Options
validatePackage: boolean
If true, validation package specifications in IDPF listed below.
used only if input is EPUB file.
- Zip header should not corrupt.
mimetype
file must be first file in archive.mimetype
file should not compressed.mimetype
file should only contain string application/epub+zip
.- Should not use extra field feature of ZIP format for mimetype file.
Default: false
allowNcxFileMissing: boolean
If false, stop parsing when NCX file not exists.
Default: true
unzipPath: ?string
If specified, unzip to that path.
only using if input is EPUB file.
Default: undefined
overwrite: boolean
If true, overwrite to unzipPath when unzip.
only using if unzipPath specified.
Default: true
parseStyle: boolean
If true, styles used for spine is described, and one namespace is given per CSS file or inline style.
Otherwise it CssItem.namespace
, SpineItem.styles
is undefined
.
In any list, InlineCssItem is always positioned after CssItem. (EpubBook.styles
, EpubBook.items
, SpineItem.styles
, ...)
Default: true
styleNamespacePrefix: string
Prepend given string to namespace for identification.
only available if parseStyle is true.
Default: 'ridi_style'
additionalInlineStyle: ?string
If specified, added inline styles to all spines.
only available if parseStyle is true.
Default: undefined
Read Options
force: boolean
If true, ignore any exceptions that occur within parser.
Default: false
basePath: ?string
If specified, change base path of paths used by spine and css.
HTML: SpineItem
...
<div>
<img src="../Images/cover.jpg">
</div>
<div>
<img src="{basePath}/OEBPS/Images/cover.jpg">
</div>
...
CSS: CssItem, InlineCssItem
@font-face {
font-family: NotoSansRegular;
src: url("../Fonts/NotoSans-Regular.ttf");
}
@font-face {
font-family: NotoSansRegular;
src: url("{basePath}/OEBPS/Fonts/NotoSans-Regular.ttf");
}
Default: undefined
extractBody: boolean|function
If true, extract body. Otherwise it returns a full string.
If specify a function instead of true, use function to transform body.
false
:
'<!doctype><html>\n<head>\n</head>\n<body style="background-color: #000000;">\n <p>Extract style</p>\n <img src=\"../Images/api-map.jpg\"/>\n</body>\n</html>'
true
:
'<body style="background-color: #000000;">\n <p>Extract style</p>\n <img src=\"../Images/api-map.jpg\"/>\n</body>'
function
:
readOptions.extractBody = (innerHTML, attrs) => {
const string = attrs.map((attr) => {
return ` ${attr.key}=\"${attr.value}\"`;
}).join(' ');
return `<article ${string}>${innerHTML}</article>`;
};
'<article style="background-color: #000000;">\n <p>Extract style</p>\n <img src=\"../Images/api-map.jpg\"/>\n</article>'
Default: false
serializedAnchor: Boolean
If true, replace file path of anchor in spine with spine index.
...
<spine toc="ncx">
<itemref idref="Section0001.xhtml"/>
<itemref idref="Section0002.xhtml"/>
<itemref idref="Section0003.xhtml"/>
...
</spine>
...
<a href="./Text/Section0002.xhtml#title">Chapter 2</a>
<a href="1#title">Chapter 2</a>
Default: false
ignoreScript: boolean
Ignore all scripts from within HTML.
Default: false
removeAtrules: string[]
Remove at-rules.
Default: []
removeTagSelector: string[]
Remove selector that point to specified tags.
Default: []
removeIdSelector: string[]
Remove selector that point to specified ids.
Default: []
removeClassSelector: string[]
Remove selector that point to specified classes.
Default: []
License
MIT