SharePoint Discussion List Importer from Stack Exchange
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function DiscussionBoardImporter() | |
{ | |
this.sourceQuery = '/2.1/questions?order=desc&sort=votes&site=sharepoint&filter=!-.AG)sL*gPlV'; | |
this.targetDiscussionsListName = 'Discussions List'; | |
} | |
DiscussionBoardImporter.prototype = (function() { | |
var importData = function(data,discussionsListName) | |
{ | |
$.each(data, function (i, question) { | |
var discussionProperties = {'Body': question.body,'Subject':question.title,'VoteNumber': question.score}; | |
createDiscussion(discussionsListName,discussionProperties, | |
function(discussionItem){ | |
console.log('Discussion ' + discussionItem.get_item('Title') + ' has been created successfully'); | |
var messagesProperties = []; | |
$.each(question.answers, function (j, answer) { | |
messagesProperties.push({'Title': answer.title,'Body': answer.body}); | |
}); | |
createMessages(discussionItem,messagesProperties, | |
function(){ | |
console.log('Messages have been created successfully'); | |
}, | |
function(sender,args){ | |
console.log('Error occured while creating messages:' + args.get_message()); | |
} | |
); | |
}, | |
function(sender,args){ | |
console.log('Error occured while creating disscussion:' + args.get_message()); | |
}); | |
}); | |
}; | |
var loadData = function(query,targetListName, loaded) | |
{ | |
$.ajax({ | |
url: 'http://api.stackexchange.com' + query, | |
dataType: 'json', | |
success: function(data) { | |
loaded(data.items,targetListName); | |
} | |
}); | |
}; | |
return { | |
constructor:DiscussionBoardImporter, | |
import: function() | |
{ | |
loadData(this.sourceQuery,this.targetDiscussionsListName,importData); | |
} | |
}; | |
})(); | |
var importer = new DiscussionBoardImporter(); | |
importer.import(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment