You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: README.md
+10-10
Original file line number
Diff line number
Diff line change
@@ -10,33 +10,33 @@ This library is part of the [**WP on Rails**](https://github.com/wponrails) proj
10
10
11
11
To prepare a WP installation to be used in a **WP on Rails** architecture the [**wp-relinquish**](https://github.com/wponrails/wp-relinquish) plugin is provided. It provides a means to configure WP actions to send notifications as webhook calls to a Rails application equipped with **wp-connector**.
12
12
13
-
When using **WP on Rails** the content's *master data* resides in WP's database, as that's where is it created and modified. The Rails application that is connected to WP stores merely a copy of the data, a cache, on the basis of which the public requests are served.
13
+
When using **WP on Rails** the content"s *master data* resides in WP"s database, as that"s where is it created and modified. The Rails application that is connected to WP stores merely a copy of the data, a cache, on the basis of which the public requests are served.
14
14
15
15
The main reasons for not using WP to serve public web requests:
16
16
17
17
***Security** — The internet is a dangerous place and WordPress has proven to be a popular target for malicious hackers. By not serving public requests from WP, but only the admin interface, the attack surface is significantly reduced.
18
18
***Performance** — Performance tuning WP can be difficult, especially when a generic caching-proxy (such as Varnish) is not viable due to dynamic content such as ads or personalization. Application frameworks provide means for fine-grained caching strategies that are needed to serve high-traffic websites containing dynamic content.
19
19
***Cost (TCO) of customizations** — Customizing WP, and maintaining those customizations, is costly (laborious) and risky (error prone) compared to building custom functionality on top of an application framework (which is specifically designed for that purpose).
20
20
***Upgrade path** — Keeping a customized WP installation up-to-date can be a pain, and WP-updates come ever more often. When WP is not used to serve public requests and customizations are not built into WP most of this pain avoided.
21
-
***Modern browser interfaces** — The new bread of JavaScript UI frameworks (such as Facebook's [React](http://facebook.github.io/react) and Google's [AngularJS](https://angularjs.org)) have features like "isomorphism" (allowing JS views to be pre-rendered on the server) and "two-way data-binding". These features expect certain server-side behavior and usually consume JSON data instead of HTML. The Rails community provides many tools to facilitate these new UI libraries from the server-side.
21
+
***Modern browser interfaces** — The new bread of JavaScript UI frameworks (such as Facebook"s [React](http://facebook.github.io/react) and Google"s [AngularJS](https://angularjs.org)) have features like "isomorphism" (allowing JS views to be pre-rendered on the server) and "two-way data-binding". These features expect certain server-side behavior and usually consume JSON data instead of HTML. The Rails community provides many tools to facilitate these new UI libraries from the server-side.
22
22
23
23
24
24
## How it works
25
25
26
26
After the Rails application receives the webhook call from WP, simply notifying that some content is created or modified, a delayed job to fetch the content is scheduled using [Sidekiq](http://sidekiq.org). The content is not fetched immediately, but scheduled for a fraction of a second later, the reason for this is twofold:
27
27
28
28
1. The webhook call is synchronous, responding as soon as possible is needed to keep the admin interface of WP responsive.
29
-
2. It is not guaranteed that all WP's processing is complete (some actions may still fire) by the time the webhook call is made.
29
+
2. It is not guaranteed that all WP"s processing is complete (some actions may still fire) by the time the webhook call is made.
30
30
31
31
The delayed job fetches the relevant content from WP using the [WP-REST-API](http://wp-api.org) (this can be one or more requests), then possibly transforms and/or enriches the data, and finally stores it using a regular ActiveRecord model. The logic for the fetch and transform/enrich steps is simply part of the ActiveRecord model definition.
32
32
33
33
34
34
## Installation
35
35
36
-
Add this line to your Rails application's `Gemfile`:
36
+
Add this line to your Rails application"s `Gemfile`:
Create a `WpConnectorController` class (in `app/controllers/wp_connector_controller.rb`) that specifies a `webhook` action. For example for the `Post` type:
@@ -176,7 +176,7 @@ class Author < ActiveRecord::Base
176
176
# ... snip ...
177
177
178
178
defself.wp_type
179
-
'wp_post_type_name'
179
+
"wp_post_type_name"
180
180
end
181
181
182
182
# ... snap ...
@@ -230,7 +230,7 @@ You know the drill :)
230
230
231
231
1. Fork it.
232
232
2. Create your feature branch (`git checkout -b my-new-feature`).
233
-
3. Commit your changes (`git commit -am 'Add some feature'`).
233
+
3. Commit your changes (`git commit -am "Add some feature"`).
234
234
4. Push to the branch (`git push origin my-new-feature`).
0 commit comments