Skip to content

Instantly share code, notes, and snippets.

@pjaspers
Created August 7, 2012 19:00
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save pjaspers/3288393 to your computer and use it in GitHub Desktop.
Save pjaspers/3288393 to your computer and use it in GitHub Desktop.
Github support for Propane (from here: https://gist.github.com/1222697) Extracted for use in gasoline gem
/*
Adopted from here: https://gist.github.com/1222697
Add github repo descriptions to your Campfire rooms in Propane (propaneapp.com).
Adapted from protocool's https://gist.github.com/825404
*/
var githubber = true;
if (githubber) {
// github repo info inline
Campfire.GitHubber = Class.create({
initialize: function(chat) {
this.chat = chat;
var messages = this.chat.transcript.messages;
for(var i = 0; i < messages.length; i++) {
this.detectGithubURL(messages[i]);
}
},
detectGithubURL: function(message) {
if (!message.pending() && message.kind === 'text') {
var links = message.bodyElement().select('a:not(image)');
if (links.length != 1) return;
var href = links[0].getAttribute('href'),
match = href.match(/^https?:\/\/github.com\//),
api = 'https://api.github.com/repos/';
if (!match) return;
api += href.replace(/^https?:\/\/github.com\//,'');
window.propane.requestJSON(message.id(), api, 'window.chat.githubber', 'onEmbedDataLoaded', 'onEmbedDataFailed');
}
},
onEmbedDataLoaded: function(messageID, data) {
var message = window.chat.transcript.getMessageById(messageID);
if (!message) return;
message.resize((function() {
message.bodyCell.insert({bottom: '<div style="color: gray; width:100%; margin-top:5px; padding-top: 5px; border-top:1px dotted #ccc;">'+data.description+'</div>'});
}).bind(this));
},
onEmbedDataFailed: function(messageID) {
/* No cleanup required, we only alter the HTML after we get back a succesful load from the data */
},
onMessagesInsertedBeforeDisplay: function(messages) {
for (var i = 0; i < messages.length; i++) {
this.detectGithubURL(messages[i]);
}
},
onMessageAccepted: function(message, messageID) {
this.detectGithubURL(message);
}
});
Campfire.Responders.push("GitHubber");
window.chat.installPropaneResponder("GitHubber", "githubber");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment