Skip to content

Commit

Permalink
Add 0.1 version of import_goodreads
Browse files Browse the repository at this point in the history
  • Loading branch information
Juanjo Conti committed Sep 2, 2015
1 parent 49a1760 commit dec2bab
Show file tree
Hide file tree
Showing 3 changed files with 159 additions and 0 deletions.
15 changes: 15 additions & 0 deletions v7/import_goodreads/README.md
@@ -0,0 +1,15 @@
This plugin import Goodreads read books from Goodreads RSS to an existing site.

It:

* users the date the user ends to read the book as post date
* includes user review
* includes user rating
* includes a link to the original review
* uses author name, book title and "Goodreads review" as tags
* writes output by default in posts/

To Do:

* include book cover (dowloading the image)
* add parameters to customize tags and content generated
10 changes: 10 additions & 0 deletions v7/import_goodreads/import_goodreads.plugin
@@ -0,0 +1,10 @@
[Core]
Name = import_goodreads
Module = import_goodreads

[Documentation]
Author = Juanjo Conti
Version = 0.1
Website = http://plugins.getnikola.com/#import_goodreads
Description = Import Goodreads read books from Goodreads RSS to an existing site

134 changes: 134 additions & 0 deletions v7/import_goodreads/import_goodreads.py
@@ -0,0 +1,134 @@
# -*- coding: utf-8 -*-

# Copyright © 2012-2014 Juanjo Conti.

# Permission is hereby granted, free of charge, to any
# person obtaining a copy of this software and associated
# documentation files (the "Software"), to deal in the
# Software without restriction, including without limitation
# the rights to use, copy, modify, merge, publish,
# distribute, sublicense, and/or sell copies of the
# Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice
# shall be included in all copies or substantial portions of
# the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY
# KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
# WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR
# PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS
# OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR
# OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
# OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
# SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

from __future__ import unicode_literals, print_function
import os
import locale
import datetime

try:
import feedparser
except ImportError:
feedparser = None # NOQA

from nikola.plugin_categories import Command
from nikola import utils
from nikola.utils import req_missing
from nikola.plugins.basic_import import ImportMixin

LOGGER = utils.get_logger('import_goodreads', utils.STDERR_HANDLER)

class CommandImportGoodreads(Command, ImportMixin):
"""Import a Goodreads RSS."""

name = "import_goodreads"
needs_config = False
doc_usage = "[options] rss_url_or_file_path"
doc_purpose = "import a Goodreads RSS"
cmd_options = [
{
'name': 'output_folder',
'long': 'output-folder',
'short': 'o',
'default': 'posts',
'help': 'Location to write imported content.'
},
]

def _execute(self, options, args):
"""Import Goodreads RSS."""

if feedparser is None:
req_missing(['feedparser'], 'import Goodreads RSS')
return

if not args:
print(self.help())
return

options['filename'] = args[0]
self.feed_export_file = options['filename']
self.output_folder = options['output_folder']
self.import_into_existing_site = True
channel = self.get_channel_from_file(self.feed_export_file)
self.import_posts(channel)

@classmethod
def get_channel_from_file(cls, filename):
return feedparser.parse(filename)

def import_posts(self, channel):
for item in channel.entries:
self.process_item(item)

def process_item(self, item):
if item.user_read_at: # Only import books finished
self.import_item(item)

def import_item(self, item):
"""Takes an item from the feed and creates a post file."""

link = item.link
if link.endswith('?utm_medium=api&utm_source=rss'):
link = link[:-30]

title = "Goodreads review: %s (%s)" % (item.title, item.author_name)

slug = utils.slugify(title)

# Needed becuase user_read_at can have a different locale
saved = locale.getlocale(locale.LC_ALL)
locale.setlocale(locale.LC_ALL, (None, None))
post_date = datetime.datetime.strptime(item.user_read_at[:-6], "%a, %d %b %Y %H:%M:%S")
locale.setlocale(locale.LC_ALL, saved)

content = ''
if item.get('user_review'):
content = item.get('user_review')

content += "<br/><br/>Raiting: %s/5" % item.user_rating

content += "<br/><br/>Original: <a href=\"%s\">%s</a>" % (link, link)

tags = [item.author_name, item.title.replace(", ", " - "), "Goodreads review"]

content = self.transform_content(content)

self.write_metadata(
os.path.join(self.output_folder, slug + '.meta'),
title, slug, post_date, '', tags)
self.write_content(
os.path.join(self.output_folder, slug + '.html'),
content)

@staticmethod
def write_metadata(filename, title, slug, post_date, description, tags):
ImportMixin.write_metadata(filename,
title,
slug,
post_date.strftime(r'%Y/%m/%d %H:%m:%S'),
description,
tags)

1 comment on commit dec2bab

@ralsina
Copy link
Member

@ralsina ralsina commented on dec2bab Sep 2, 2015

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I have this feeling that if you required feed_parser and we found a way to inherit one plugin from the other, this plugin mostly goes away :-)

Please sign in to comment.