V8 Script has no effect, but var_dump shows change

For some reason, v8 scripting is having no effect over the API calls.
I have installed DreamFactory manually, so I was wondering if it’s perhaps to do with the V8 php mod I’m using (0.4.1)

I’ve previously installed DF using Bitnami on other servers and have written V8 scripts in the past, so I’m relatively sure I’m doing everything correctly.

Just to give a little more info on this. lodash doesn’t seem to be working for some reason, so I’m now using the sample code with a standard for loop on post process of table{name} GET:

//****************** Post-processing script on a table ******************

// A script that is triggered by a GET on /api/v2/db/_table/. Runs after the db call is made.
// The script adds a new field to each record in the response.

var lodash = require(“lodash.min.js”);

if (event.response.content.resource) {

for (var i = 0; i < event.response.content.resource.length; i++ ) {

   event.response.content.resource[i].extraField = 'Feed the dog.';
}

// outputs to file in storage/log of dreamfactory install directory
var_dump(event.response.content);
}

The output in dreamfactory.log is as follows:

[2016-02-25 13:16:07] local.DEBUG: Resource event: d7db._table.{table_name}.get.post_process
[2016-02-25 13:16:48] local.DEBUG: Resource event: system.event.post.pre_process
[2016-02-25 13:16:48] local.DEBUG: Resource event: system.event.post.post_process
[2016-02-25 13:16:48] local.DEBUG: Resource event: system.event.get.pre_process
[2016-02-25 13:16:48] local.DEBUG: Resource event: system.event.get.post_process
[2016-02-25 13:16:53] local.DEBUG: Resource event: d7db._table.{table_name}.get.pre_process
[2016-02-25 13:16:53] local.DEBUG: Resource event: d7db._table.actions.get.pre_process
[2016-02-25 13:16:53] local.DEBUG: Resource event: d7db._table.actions.get.post_process
[2016-02-25 13:16:53] local.INFO: * Script “d7db._table.actions.get.post_process” output:
object(Object)#695398593 (1) {
[“resource”] =>
array(2) {
[0] =>
object(Object)#1771618855 (6) {
[“aid”] =>
string(22) “comment_publish_action”
[“type”] =>
string(7) “comment”
[“callback”] =>
string(22) “comment_publish_action”
[“parameters”] =>
string(0) “”
[“label”] =>
string(15) “Publish comment”
[“extraField”] =>
string(13) “Feed the dog.”
}
[1] =>
object(Object)#1858684270 (6) {
[“aid”] =>
string(19) “comment_save_action”
[“type”] =>
string(7) “comment”
[“callback”] =>
string(19) “comment_save_action”
[“parameters”] =>
string(0) “”
[“label”] =>
string(12) “Save comment”
[“extraField”] =>
string(13) “Feed the dog.”
}
}
}

[2016-02-25 13:16:53] local.DEBUG: Resource event: d7db._table.{table_name}.get.post_process

The problem was due to a change in the spec that means you now need to set the content_changed flag to true for scripts to have any effect:

event.response.content_changed = true;

https://wiki.dreamfactory.com/DreamFactory/Tutorials/V8_sql_with_nosql

1 Like