diff options
author | Patryk Niedźwiedziński <pniedzwiedzinski19@gmail.com> | 2020-08-07 21:55:16 +0200 |
---|---|---|
committer | Patryk Niedźwiedziński <pniedzwiedzinski19@gmail.com> | 2020-08-07 21:55:16 +0200 |
commit | 6116769757ddd88781129e7339fc7ff60a259337 (patch) | |
tree | 362f6512b72b38d1d7a796783b60fe5f24fadb4a /lib/index.ts | |
parent | c941b9a7066f6fe5cfebf159feb7d00cd316f64d (diff) | |
download | kronikarz-6116769757ddd88781129e7339fc7ff60a259337.tar.gz kronikarz-6116769757ddd88781129e7339fc7ff60a259337.zip |
Add rss feed generation
Diffstat (limited to 'lib/index.ts')
-rw-r--r-- | lib/index.ts | 17 |
1 files changed, 13 insertions, 4 deletions
diff --git a/lib/index.ts b/lib/index.ts index 4bf4dd3..3eddf7a 100644 --- a/lib/index.ts +++ b/lib/index.ts @@ -1,6 +1,8 @@ +import { FeedOptions } from "./interfaces"; import { getPost as apiGetPost } from "./getPost"; import { getPosts as apiGetPosts } from "./getPosts"; -import { generateApi as apiGenerateApi } from "./generateApi" +import { generateApi as apiGenerateApi } from "./generateApi"; +import { generateRss as apiGenerateRss } from "./generateRss"; import Post from "./Post"; export default class Kronikarz { @@ -13,11 +15,18 @@ export default class Kronikarz { getPosts(): Array<Post> { return apiGetPosts(this.postPath); } + getPost(year: string, month: string, day: string, title: string): Post { return apiGetPost({ year, month, day, title }, this.postPath); } - generateApi(path: string) { - const posts = this.getPosts(); - apiGenerateApi(posts, path) + + generateApi(path: string) { + const posts = this.getPosts(); + apiGenerateApi(posts, path) + } + + generateRss(path: string, feedOptions: FeedOptions) { + const posts = this.getPosts(); + apiGenerateRss(posts, path, feedOptions); } } |