Coder Social home page Coder Social logo

peramsathyam / django-wordpress-rest Goto Github PK

View Code? Open in Web Editor NEW

This project forked from observermedia/django-wordpress-rest

0.0 2.0 0.0 242 KB

Sync a WordPress site to Django via the WordPress.com REST API

License: MIT License

Makefile 0.24% Python 99.76%

django-wordpress-rest's Introduction

django-wordpress-rest

https://circleci.com/gh/observermedia/django-wordpress-rest/tree/master.svg?style=shield&circle-token=d6ff8ea2fbb65de69536e1bacf6ce27fb95a533e Documentation Status

Welcome to django-wordpress-rest!

Summary

Django-wordpress-rest is a Django application that syncs content from a WordPress.com site to a Django site.

This is done using the WordPress.com REST API. A separate copy of the content data is stored on the Django side, which allows for loose coupling and extensability.

Full documentation is available on Read The Docs.

Quickstart

Install the module:

pip install django-wordpress-rest

Add "wordpress" to your INSTALLED_APPS setting:

INSTALLED_APPS = (
    # ...
    "wordpress",
    # ...
)

Create the database tables that will persist the sync'd WordPress content:

$ python manage.py migrate

Sync WordPress content using the management command. The <site_id> can be found using the /me/sites WordPress API call. This is useful for periodically updating the content with cron.

$ python manage.py load_wp_api <site_id>

Authentication

If you'd like to synchronize private content, create an OAuth2 access token using the instructions provided by WordPress: https://developer.wordpress.com/docs/oauth2/

Add this token to your Django settings.py file. Use an environment variable to keep things secure:

WP_API_AUTH_TOKEN = os.getenv("WP_API_AUTH_TOKEN")

Load Options

Bring the site content up to date:

# first run gets everything
$ python manage.py load_wp_api <site_id>

# second run gets content modified since previous run
$ python manage.py load_wp_api <site_id>

Do a full sweep of the site content, inserting and updating as needed:

# first run gets everything
$ python manage.py load_wp_api <site_id>

# second run gets/updates all content again
$ python manage.py load_wp_api <site_id> --full

Load everything modified after a given date:

$ python manage.py load_wp_api <site_id> --modified_after=2015-01-01

Just load posts, not pages, attachments, or reference data:

$ python manage.py load_wp_api <site_id> --type=post

Load posts with a specific status (note this requires authentication):

$ python manage.py load_wp_api <site_id> --status=draft

Purge local content before loading -- careful!

$ python manage.py load_wp_api <site_id> --purge --full

Webhook

If you'd like to use the webhook to sync a post immediately after it's updated, include the urls into your project's urls.py, like so:

from django.conf.urls import include

urlpatterns = [
    url(r'^wordpress/', include('wordpress.urls'))
]

Add "after_response" to your INSTALLED_APPS setting (this allows asynchronous processing):

INSTALLED_APPS = (
    # ...
    "after_response",
    "wordpress",
    # ...
)

The webhook looks for your <site_id> in Django settings. So add this your settings.py, and use an environment variable to keep things secure:

WP_API_SITE_ID = os.getenv("WP_API_SITE_ID")

Finally from your WordPress.com site, submit a POST request with an ID data element in the body to trigger a sync of a single post. Note this should be the WordPress Post ID, not the Django one!

$ curl -X POST --data "ID=123456" http://mydjangosite.com/wordpress/load_post

Running the Tests

$ pip install detox
$ detox

django-wordpress-rest's People

Contributors

sternb0t avatar

Watchers

James Cloos avatar Peramanathan Sathyamoorthy avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.