X-Git-Url: http://sru.miketaylor.org.uk/?a=blobdiff_plain;f=src%2Fmkws-filter.js;h=f19edcb612f602fb68d0bd7f9408c11b2dccf729;hb=21517d3fc6abff3ced7cad2a68cfb290df60922f;hp=877e8ff3c56362a2bad02ec0dd0c4d026966b29f;hpb=b74bf4630c84387159714178e3544171907480af;p=mkws-moved-to-github.git diff --git a/src/mkws-filter.js b/src/mkws-filter.js index 877e8ff..f19edcb 100644 --- a/src/mkws-filter.js +++ b/src/mkws-filter.js @@ -5,14 +5,32 @@ function filterSet(team) { var that = {}; - that.list = function() { - return m_list; + that.toJSON = function() { + return $.toJSON(m_list); }; that.add = function(filter) { m_list.push(filter); }; + that.visitTargets = function(callback) { + for (var i in m_list) { + var filter = m_list[i]; + if (filter.id) { + callback(filter.id, filter.name); + } + } + }; + + that.visitFields = function(callback) { + for (var i in m_list) { + var filter = m_list[i]; + if (!filter.id) { + callback(filter.field, filter.value); + } + } + }; + that.removeMatching = function(matchFn) { var newList = []; for (var i in m_list) { @@ -35,6 +53,32 @@ function filterSet(team) { } } return false; + }; + + that.pp2filter = function() { + var res = ""; + + that.visitTargets(function(id, name) { + if (res) res += ","; + if (id.match(/^[a-z:]+[=~]/)) { + m_team.log("filter '" + id + "' already begins with SETTING OP"); + } else { + id = 'pz:id=' + id; + } + res += id; + }); + + return res; + }; + + that.pp2limit = function(initial) { + var res = initial || ""; + + that.visitFields(function(field, value) { + if (res) res += ","; + res += field + "=" + value.replace(/[\\|,]/g, '\\$&'); + }); + return res; } return that;