Created
March 5, 2009 05:08
-
-
Save wireframe/74198 to your computer and use it in GitHub Desktop.
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
CmdUtils.CreateCommand({ | |
name: "zillow", | |
icon: "http://www.zillow.com/favicon.ico", | |
homepage: "http://ryan.codecrate.com", | |
author: { name: "Ryan Sonnek", email: "ryan@codecrate.com"}, | |
license: "MIT", | |
description: "Search for property value on zillow.com", | |
help: "select an address and invoke this command", | |
takes: {"address": noun_arb_text}, | |
searchUrl: 'http://www.zillow.com/webservice/GetSearchResults.htm', | |
postData: function(input) { | |
var address = input.text; | |
var zipcode = address.substring(address.lastIndexOf(' ')); | |
var street = address.substring(0, address.lastIndexOf(' ')); | |
return {'zws-id': 'X1-ZWz1csm2cyipsb_6plsv', 'address': address, 'citystatezip': zipcode}; | |
}, | |
preview: function(pblock, address) { | |
pblock.innerHTML = 'Loading...'; | |
jQuery.get(this.searchUrl, this.postData(address), function(xml) { | |
var result = jQuery(xml).find('result'); | |
var html = ''; | |
html += result.size() + ' result found. <br />'; | |
html += "<p>" + address.text + "</p>"; | |
html += "<b>$" + result.find('zestimate').find('amount').text() + "</b><br />"; | |
html += "<i>($" + result.find('zestimate').find('valuationRange').find('low').text() + " - "; | |
html += "$" + result.find('zestimate').find('valuationRange').find('high').text() + ")</i>"; | |
pblock.innerHTML = html; | |
}); | |
}, | |
execute: function(address) { | |
jQuery.get(this.searchUrl, this.postData(address), function(xml) { | |
var result = jQuery(xml).find('result'); | |
var url = result.find('links').find('homedetails').text(); | |
Utils.openUrlInBrowser(url); | |
}); | |
} | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment