From: Maxious Date: Wed, 14 Nov 2012 02:53:20 +0000 Subject: design doc updater X-Git-Url: http://maxious.lambdacomplex.org/git/?p=disclosr.git&a=commitdiff&h=4983addc5a68df932dc74de93f1c57b97b165e81 --- design doc updater Former-commit-id: 52c0dccb230edddd3a6d311dcb1d58dece972ccd --- --- a/admin/refreshDesignDoc.php +++ b/admin/refreshDesignDoc.php @@ -1,7 +1,177 @@ get_db('disclosr-foidocuments'); + $obj = new stdClass(); + $obj->_id = "_design/" . urlencode("app"); + $obj->language = "javascript"; + $obj->views->all->map = "function(doc) { emit(doc._id, doc); };"; + $obj->views->byDate->map = "function(doc) { emit(doc.date, doc); };"; + + // allow safe updates (even if slightly slower due to extra: rev-detection check). + $foidb->save($obj, true); + + +function createDocumentsDesignDoc() { + /* + global $db; + $obj = new stdClass(); + $obj->_id = "_design/" . urlencode("app"); + $obj->language = "javascript"; + $obj->views->all->map = "function(doc) { emit(doc._id, doc); };"; + $obj->views->byABN->map = "function(doc) { emit(doc.abn, doc); };"; + "views": { + "web_server": { + "map": "function(doc) {\n emit(doc.web_server, 1);\n}", + "reduce": "function (key, values, rereduce) {\n return sum(values);\n}" + }, + "byAgency": { + "map": "function(doc) {\n emit(doc.agencyID, 1);\n}", + "reduce": "function (key, values, rereduce) {\n return sum(values);\n}" + }, + "byURL": { + "map": "function(doc) {\n emit(doc.url, doc);\n}" + }, + "agency": { + "map": "function(doc) {\n emit(doc.agencyID, doc);\n}" + }, + "byWebServer": { + "map": "function(doc) {\n emit(doc.web_server, doc);\n}" + }, + "getValidationRequired": { + "map": "function(doc) {\nif (doc.mime_type == \"text/html\" \n&& typeof(doc.validation) == \"undefined\") {\n emit(doc._id, doc._attachments);\n}\n}" + } + } */ +} + +//function createAgencyDesignDoc() { $db = $server->get_db('disclosr-agencies'); -createAgencyDesignDoc(); + $obj = new stdClass(); + $obj->_id = "_design/" . urlencode("app"); + $obj->language = "javascript"; + $obj->views->all->map = "function(doc) { emit(doc._id, doc); };"; + $obj->views->byABN->map = "function(doc) { emit(doc.abn, doc); };"; + $obj->views->byCanonicalName->map = "function(doc) { + if (doc.parentOrg || doc.orgType == 'FMA-DepartmentOfState') { + emit(doc.name, doc); + } +};"; + $obj->views->byDeptStateName->map = "function(doc) { + if (doc.orgType == 'FMA-DepartmentOfState') { + emit(doc.name, doc._id); + } +};"; + $obj->views->parentOrgs->map = "function(doc) { + if (doc.parentOrg) { + emit(doc._id, doc.parentOrg); + } +};"; + $obj->views->byName->map = 'function(doc) { + if (typeof(doc["status"]) == "undefined" || doc["status"] != "suspended") { + emit(doc.name, doc._id); +if (typeof(doc.shortName) != "undefined" && doc.shortName != doc.name) { + emit(doc.shortName, doc._id); +} + for (name in doc.otherNames) { +if (doc.otherNames[name] != "" && doc.otherNames[name] != doc.name) { + emit(doc.otherNames[name], doc._id); +} + } + for (name in doc.foiBodies) { +if (doc.foiBodies[name] != "" && doc.foiBodies[name] != doc.name) { + emit(doc.foiBodies[name], doc._id); +} + } + } +};'; + + $obj->views->foiEmails->map = "function(doc) { + emit(doc._id, doc.foiEmail); +};"; + + $obj->views->byLastModified->map = "function(doc) { emit(doc.metadata.lastModified, doc); }"; + $obj->views->getActive->map = 'function(doc) { if (doc.status == "active") { emit(doc._id, doc); } };'; + $obj->views->getSuspended->map = 'function(doc) { if (doc.status == "suspended") { emit(doc._id, doc); } };'; + $obj->views->getScrapeRequired->map = "function(doc) { + +var lastScrape = Date.parse(doc.metadata.lastScraped); + +var today = new Date(); + +if (!lastScrape || lastScrape.getTime() + 1000 != today.getTime()) { + emit(doc._id, doc); +} + +};"; + $obj->views->showNamesABNs->map = "function(doc) { emit(doc._id, {name: doc.name, abn: doc.abn}); };"; + $obj->views->getConflicts->map = "function(doc) { + if (doc._conflicts) { + emit(null, [doc._rev].concat(doc._conflicts)); + } +}"; + // http://stackoverflow.com/questions/646628/javascript-startswith + $obj->views->score->map = 'if(!String.prototype.startsWith){ + String.prototype.startsWith = function (str) { + return !this.indexOf(str); + } +} + +function(doc) { + count = 0; + if (doc["status"] != "suspended") { + for(var propName in doc) { + if(typeof(doc[propName]) != "undefined" && doc[propName] != "") { + count++; + } + } + portfolio = doc.parentOrg; + if (doc.orgType == "FMA-DepartmentOfState") { + portfolio = doc._id; + } + if (doc.orgType == "Court-Commonwealth" || doc.orgType == "FMA-DepartmentOfParliament") { + portfolio = doc.orgType; + } + emit(count+doc._id, {id:doc._id, name: doc.name, score:count, orgType: doc.orgType, portfolio:portfolio}); + } +}'; + $obj->views->scoreHas->map = 'if(!String.prototype.startsWith){ + String.prototype.startsWith = function (str) { + return !this.indexOf(str); + } +} +if(!String.prototype.endsWith){ + String.prototype.endsWith = function(suffix) { +     return this.indexOf(suffix, this.length - suffix.length) !== -1; + }; +} +function(doc) { +if (typeof(doc["status"]) == "undefined" || doc["status"] != "suspended") { +for(var propName in doc) { + if(typeof(doc[propName]) != "undefined" && (propName.startsWith("has") || propName.endsWith("URL"))) { + emit(propName, 1); + } +} + emit("total", 1); + } +}'; + $obj->views->scoreHas->reduce = 'function (key, values, rereduce) { + return sum(values); +}'; + $obj->views->fieldNames->map = ' +function(doc) { +for(var propName in doc) { + emit(propName, doc._id); + } + +}'; + $obj->views->fieldNames->reduce = 'function (key, values, rereduce) { + return values.length; +}'; + // allow safe updates (even if slightly slower due to extra: rev-detection check). + $db->save($obj, true); + + ?> --- a/documents/genericScrapers.py +++ b/documents/genericScrapers.py @@ -8,18 +8,31 @@ import feedparser import abc -class GenericRSSDisclogScraper(object): +class GenericDisclogScraper(object): __metaclass__ = abc.ABCMeta - @abc.abstractmethod + agencyID = None + disclogURL = None def getAgencyID(self): """ disclosr agency id """ - return + if self.agencyID == None: + self.agencyID = os.path.basename(sys.argv[0]).replace(".py","") + return self.agencyID - @abc.abstractmethod def getURL(self): """ disclog URL""" - return + if self.disclogURL == None: + agency = scrape.agencydb.get(self.getAgencyID()) + self.disclogURL = agency['FOIDocumentsURL'] + return self.disclogURL + @abc.abstractmethod + def doScrape(self): + """ do the scraping """ + return + + + +class GenericRSSDisclogScraper(GenericDisclogScraper): def getDescription(self, entry, doc): """ get description from rss entry""" doc['description'] = entry.summary @@ -46,18 +59,8 @@ else: print "already saved" -class GenericOAICDisclogScraper(object): - __metaclass__ = abc.ABCMeta - @abc.abstractmethod - def getAgencyID(self): - """ disclosr agency id """ - return - - @abc.abstractmethod - def getURL(self): - """ disclog URL""" - return - +class GenericOAICDisclogScraper(GenericDisclogScraper): + __metaclass__ = abc.ABCMeta @abc.abstractmethod def getColumns(self,columns): """ rearranges columns if required """ --- a/documents/scrapers/3cd40b1240e987cbcd3f0e67054ce259.py +++ b/documents/scrapers/3cd40b1240e987cbcd3f0e67054ce259.py @@ -5,12 +5,6 @@ #http://www.doughellmann.com/PyMOTW/abc/ class ScraperImplementation(genericScrapers.GenericOAICDisclogScraper): - def getAgencyID(self): - return "3cd40b1240e987cbcd3f0e67054ce259" - - def getURL(self): - return "http://www.apvma.gov.au/about/foi/disclosure/index.php" - def getColumns(self,columns): (id, date, description, title, notes) = columns return (id, date, description, title, notes) @@ -19,3 +13,4 @@ print 'Subclass:', issubclass(ScraperImplementation, genericScrapers.GenericOAICDisclogScraper) print 'Instance:', isinstance(ScraperImplementation(), genericScrapers.GenericOAICDisclogScraper) ScraperImplementation().doScrape() + --- a/documents/scrapers/8c9421f852c441910bf1d93a57b31d64.py +++ b/documents/scrapers/8c9421f852c441910bf1d93a57b31d64.py @@ -5,12 +5,6 @@ #http://www.doughellmann.com/PyMOTW/abc/ class ScraperImplementation(genericScrapers.GenericOAICDisclogScraper): - def getAgencyID(self): - return "8c9421f852c441910bf1d93a57b31d64" - - def getURL(self): - return "http://www.daff.gov.au/about/foi/ips/disclosure-log" - def getColumns(self,columns): (id, date, title, description, notes) = columns return (id, date, description, title, notes) --- a/documents/scrapers/be9996f0ac58f71f23d074e82d44ead3.py +++ b/documents/scrapers/be9996f0ac58f71f23d074e82d44ead3.py @@ -6,12 +6,6 @@ from bs4 import BeautifulSoup #http://www.doughellmann.com/PyMOTW/abc/ class ScraperImplementation(genericScrapers.GenericRSSDisclogScraper): - def getAgencyID(self): - return "be9996f0ac58f71f23d074e82d44ead3" - - def getURL(self): - return "http://foi.deewr.gov.au/disclosure-log/rss" - def getDescription(self,entry,doc): (url,mime_type,content) = scrape.fetchURL(scrape.docsdb, entry.link, "foidocuments", self.getAgencyID(), False) if content != None: --- a/documents/scrapers/e2a845e55bc9986e6c75c5ad2c508b8d.py +++ b/documents/scrapers/e2a845e55bc9986e6c75c5ad2c508b8d.py @@ -5,12 +5,6 @@ #http://www.doughellmann.com/PyMOTW/abc/ class ScraperImplementation(genericScrapers.GenericRSSDisclogScraper): - def getAgencyID(self): - return "be9996f0ac58f71f23d074e82d44ead3" - - def getURL(self): - return "http://foi.deewr.gov.au/disclosure-log/rss" - def getColumns(self,columns): (id, date, title, description, notes) = columns return (id, date, description, title, notes) --- a/documents/scrapers/rtk.py +++ b/documents/scrapers/rtk.py @@ -5,12 +5,6 @@ #http://www.doughellmann.com/PyMOTW/abc/ class ScraperImplementation(genericScrapers.GenericRSSDisclogScraper): - def getAgencyID(self): - return "be9996f0ac58f71f23d074e82d44ead3" - - def getURL(self): - return "http://foi.deewr.gov.au/disclosure-log/rss" - def getColumns(self,columns): (id, date, title, description, notes) = columns return (id, date, description, title, notes) --- a/documents/template.inc.php +++ b/documents/template.inc.php @@ -127,7 +127,7 @@ } function displayLogEntry($row, $idtoname) { - echo "

".$row->value->date.": ".$row->value->title." (".$idtoname[$row->value->agencyID].")

".$row->value->description; + echo "

".$row->value->date.": ".$row->value->title." (".$idtoname[$row->value->agencyID].")

".str_replace("\n","
",$row->value->description); if (isset($row->value->notes)) { echo "
Note: ".$row->value->notes; } --- a/include/couchdb.inc.php +++ b/include/couchdb.inc.php @@ -3,169 +3,6 @@ include $basePath . "schemas/schemas.inc.php"; require ($basePath . 'couchdb/settee/src/settee.php'); -function createFOIDocumentsDesignDoc() { - /* "map": "function(doc) {\n emit(doc.web_server, 1);\n}", - "reduce": "function (key, values, rereduce) {\n return sum(values);\n}" - }, - "byAgency": { - "map": "function(doc) {\n emit(doc.agencyID, 1);\n}", - "reduce": "function (key, values, rereduce) {\n return sum(values);\n}" - }, - "byURL": { - "map": "function(doc) {\n emit(doc.url, doc);\n}" -*/ -} -function createDocumentsDesignDoc() { - /* "views": { - "web_server": { - "map": "function(doc) {\n emit(doc.web_server, 1);\n}", - "reduce": "function (key, values, rereduce) {\n return sum(values);\n}" - }, - "byAgency": { - "map": "function(doc) {\n emit(doc.agencyID, 1);\n}", - "reduce": "function (key, values, rereduce) {\n return sum(values);\n}" - }, - "byURL": { - "map": "function(doc) {\n emit(doc.url, doc);\n}" - }, - "agency": { - "map": "function(doc) {\n emit(doc.agencyID, doc);\n}" - }, - "byWebServer": { - "map": "function(doc) {\n emit(doc.web_server, doc);\n}" - }, - "getValidationRequired": { - "map": "function(doc) {\nif (doc.mime_type == \"text/html\" \n&& typeof(doc.validation) == \"undefined\") {\n emit(doc._id, doc._attachments);\n}\n}" - } - } */ -} - -function createAgencyDesignDoc() { - global $db; - $obj = new stdClass(); - $obj->_id = "_design/" . urlencode("app"); - $obj->language = "javascript"; - $obj->views->all->map = "function(doc) { emit(doc._id, doc); };"; - $obj->views->byABN->map = "function(doc) { emit(doc.abn, doc); };"; - $obj->views->byCanonicalName->map = "function(doc) { - if (doc.parentOrg || doc.orgType == 'FMA-DepartmentOfState') { - emit(doc.name, doc); - } -};"; - $obj->views->byDeptStateName->map = "function(doc) { - if (doc.orgType == 'FMA-DepartmentOfState') { - emit(doc.name, doc._id); - } -};"; - $obj->views->parentOrgs->map = "function(doc) { - if (doc.parentOrg) { - emit(doc._id, doc.parentOrg); - } -};"; - $obj->views->byName->map = 'function(doc) { - if (typeof(doc["status"]) == "undefined" || doc["status"] != "suspended") { - emit(doc.name, doc._id); -if (typeof(doc.shortName) != "undefined" && doc.shortName != doc.name) { - emit(doc.shortName, doc._id); -} - for (name in doc.otherNames) { -if (doc.otherNames[name] != "" && doc.otherNames[name] != doc.name) { - emit(doc.otherNames[name], doc._id); -} - } - for (name in doc.foiBodies) { -if (doc.foiBodies[name] != "" && doc.foiBodies[name] != doc.name) { - emit(doc.foiBodies[name], doc._id); -} - } - } -};'; - - $obj->views->foiEmails->map = "function(doc) { - emit(doc._id, doc.foiEmail); -};"; - - $obj->views->byLastModified->map = "function(doc) { emit(doc.metadata.lastModified, doc); }"; - $obj->views->getActive->map = 'function(doc) { if (doc.status == "active") { emit(doc._id, doc); } };'; - $obj->views->getSuspended->map = 'function(doc) { if (doc.status == "suspended") { emit(doc._id, doc); } };'; - $obj->views->getScrapeRequired->map = "function(doc) { - -var lastScrape = Date.parse(doc.metadata.lastScraped); - -var today = new Date(); - -if (!lastScrape || lastScrape.getTime() + 1000 != today.getTime()) { - emit(doc._id, doc); -} - -};"; - $obj->views->showNamesABNs->map = "function(doc) { emit(doc._id, {name: doc.name, abn: doc.abn}); };"; - $obj->views->getConflicts->map = "function(doc) { - if (doc._conflicts) { - emit(null, [doc._rev].concat(doc._conflicts)); - } -}"; - // http://stackoverflow.com/questions/646628/javascript-startswith - $obj->views->score->map = 'if(!String.prototype.startsWith){ - String.prototype.startsWith = function (str) { - return !this.indexOf(str); - } -} - -function(doc) { - count = 0; - if (doc["status"] != "suspended") { - for(var propName in doc) { - if(typeof(doc[propName]) != "undefined" && doc[propName] != "") { - count++; - } - } - portfolio = doc.parentOrg; - if (doc.orgType == "FMA-DepartmentOfState") { - portfolio = doc._id; - } - if (doc.orgType == "Court-Commonwealth" || doc.orgType == "FMA-DepartmentOfParliament") { - portfolio = doc.orgType; - } - emit(count+doc._id, {id:doc._id, name: doc.name, score:count, orgType: doc.orgType, portfolio:portfolio}); - } -}'; - $obj->views->scoreHas->map = 'if(!String.prototype.startsWith){ - String.prototype.startsWith = function (str) { - return !this.indexOf(str); - } -} -if(!String.prototype.endsWith){ - String.prototype.endsWith = function(suffix) { -     return this.indexOf(suffix, this.length - suffix.length) !== -1; - }; -} -function(doc) { -if (typeof(doc["status"]) == "undefined" || doc["status"] != "suspended") { -for(var propName in doc) { - if(typeof(doc[propName]) != "undefined" && (propName.startsWith("has") || propName.endsWith("URL"))) { - emit(propName, 1); - } -} - emit("total", 1); - } -}'; - $obj->views->scoreHas->reduce = 'function (key, values, rereduce) { - return sum(values); -}'; - $obj->views->fieldNames->map = ' -function(doc) { -for(var propName in doc) { - emit(propName, doc._id); - } - -}'; - $obj->views->fieldNames->reduce = 'function (key, values, rereduce) { - return values.length; -}'; - // allow safe updates (even if slightly slower due to extra: rev-detection check). - return $db->save($obj, true); -} if (php_uname('n') == "vanille") { $serverAddr = 'http://192.168.178.21:5984/';