Heyah,
I have written a short script automatically posting new Google-Form-Entries to Discourse. You can use it to allow any kind of 3-party Data input into discourse for example:
- Anonymous Feedback
- Support-Request
- Membership-Applications (this is what we do with it)
The script
The script is small and simple:
// ----- MINIMUM CONFIGURATION !!!! // generate this at /admin/api API_KEY = "d29dXXXXXXXXXXXXXXXXXXXXX70" // use full qualified domain name in url to discourse index TARGET_INSTALLATION = "http://DISCOURSE.EXAMPLE.ORG/" // ----- Optional Configuartion // which category to post this to? Default: 'uncategorized' CATEGORY = 'uncategorized' // which user should be the one posting? Default: 'system' POSTER = "system" // you probably wanna activate this, when using templates INCLUDE_RAW_DATA = true // the title to post at, // should contain any 'form'-replacer or Discourse might complain it already has that title TITLE_TEMPLATE = "New Form Entry: {{Name}}" // Wanna have it look pretty? TEMPLATE = "# {{Name}}\n\n - Water Type: {{Water}}" + function _compile(source, values){ var processed = source; for (key in values) { processed = processed.replace("{{" + key + "}}", values[key]); } return processed; } function _compile_data_from_form(formResponse){ var data = {}, itemResponses = formResponse.getItemResponses(); for (var j = 0; j < itemResponses.length; j++) { var itemResponse = itemResponses[j]; data[itemResponse.getItem().getTitle()] = itemResponse.getResponse(); } return data; } function postToDiscourse(evt) { var vals = evt.namedValues || _compile_data_from_form(evt.response), title = _compile(TITLE_TEMPLATE, vals), text = _compile(TEMPLATE, vals); if (INCLUDE_RAW_DATA) { var entries = []; for (key in vals){ entries.push(" - **" + key + "**: " + vals[key]); } text += "\n Raw Values: \n\n" + entries.join('\n'); } UrlFetchApp.fetch(TARGET_INSTALLATION + "/posts", {'method': 'post', 'payload':{ 'category': CATEGORY, 'auto_track': false, 'title': title, 'raw': text, 'api_key': API_KEY, 'api_username': POSTER }}); } function API_TEST(){ //var form = {namedValues:{'Name': 'Benji', 'Email': 'Testi'}}; var form = FormApp.openById("1RnCD4I2VgWpzTiJTq-0qq6u-v-LEpEKQgOBmhafTsQo"), formResponses = form.getResponses(), newestResponse = formResponses[formResponses.length -1]; postToDiscourse({response: newestResponse}); } Installation
-  Generate an ADMIN-Key of your installation at /admin/api 
-  Add Script to a new googles form or existing one via Tools-> Script Editor
  
-  Copy the entire script into the new Editor that opens 
-  Replace the API-Key in the script with the one from your installation, 
 Change the Installation-Target-Name
-  Save and check your configuration by running the “API_TEST” function: 
    
-  A new post should show up in your Discourse. 
 – you might want to do redo this one until the configuration (posting user, posting in proper category) are all figure out
-  Connect function to trigger by going to Resources->All Triggersand an on-form-submit-trigger connected to thepostToDiscoursefunction:
   
 (you might be asked to give permission when saving the first time: yes, please do so)
Voilá, you’ll receive new posts (including all update and email features) of forms submitted in your discourse instance from now on.
You might want to also take a look at my “automatically email form-data” script and add that one, too. As always, feel free to posts questions, feedback and praise right down here as replies  .
 .

