OpenProject is the leading open source project management software.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
openproject/frontend/app/helpers/url-params-helper.js

219 lines
6.5 KiB

//-- copyright
// OpenProject is a project management system.
// Copyright (C) 2012-2017 the OpenProject Foundation (OPF)
//
// This program is free software; you can redistribute it and/or
// modify it under the terms of the GNU General Public License version 3.
//
// OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows:
// Copyright (C) 2006-2017 Jean-Philippe Lang
// Copyright (C) 2010-2013 the ChiliProject Team
//
// This program is free software; you can redistribute it and/or
// modify it under the terms of the GNU General Public License
// as published by the Free Software Foundation; either version 2
// of the License, or (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program; if not, write to the Free Software
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
//
// See doc/COPYRIGHT.rdoc for more details.
//++
module.exports = function(I18n, PaginationService, PathHelper) {
var UrlParamsHelper = {
// copied more or less from angular buildUrl
buildQueryString: function(params) {
if (!params) return;
var parts = [];
angular.forEach(params, function(value, key) {
if (!value) return;
if (!Array.isArray(value)) value = [value];
angular.forEach(value, function(v) {
if (v !== null && typeof v === 'object') {
v = toJson(v);
}
parts.push(encodeURIComponent(key) + '=' +
encodeURIComponent(v));
});
});
return parts.join('&');
},
encodeQueryJsonParams: function(query, additional) {
var paramsData = {
c: query.columns.map(function(column) { return column.id; })
};
if(!!query.sums) {
paramsData.s = query.sums;
}
if(!!query.timelineVisible) {
paramsData.tv = query.timelineVisible;
}
paramsData.hi = !!query.showHierarchies;
if(query.groupBy) {
paramsData.g = query.groupBy.id;
}
if(query.sortBy) {
paramsData.t = query
.sortBy
.map(function(sort) { return sort.id.replace('-', ':') })
.join();
}
if(query.filters && query.filters.length) {
paramsData.f = query
.filters
.map(function(filter) {
var id = filter.id;
var operator = filter.operator.id;
return {
n: id,
o: encodeURIComponent(operator),
v: _.map(filter.values, UrlParamsHelper.queryFilterValueToParam)
};
});
}
paramsData.pa = additional.page;
paramsData.pp = additional.perPage;
return JSON.stringify(paramsData);
},
buildV3GetQueryFromJsonParams: function(updateJson) {
var queryData = {};
if (!updateJson) {
return queryData;
}
var properties = JSON.parse(updateJson);
if(properties.c) {
queryData["columns[]"] = properties.c.map(function(column) { return column; });
}
if(!!properties.s) {
queryData.showSums = properties.s;
}
if(!!properties.tv) {
queryData.timelineVisible = properties.tv;
}
if(!!properties.hi) {
queryData.showHierarchies = properties.hi;
}
if(properties.g) {
queryData.groupBy = properties.g;
}
// Filters
if(properties.f) {
var filters = properties.f.map(function(urlFilter) {
var attributes = {
operator: decodeURIComponent(urlFilter.o)
}
if(urlFilter.v) {
// the array check is only there for backwards compatibility reasons.
// Nowadays, it will always be an array;
var vs = Array.isArray(urlFilter.v) ? urlFilter.v : [urlFilter.v];
angular.extend(attributes, { values: vs });
}
filterData = {};
filterData[urlFilter.n] = attributes;
return filterData;
});
queryData.filters = JSON.stringify(filters);
}
// Sortation
queryData.sortBy = JSON.stringify(properties.t.split(',').map(function(sort) { return sort.split(':') }));
// Pagination
if(properties.pa) {
queryData.offset = properties.pa;
}
if(properties.pp) {
queryData.pageSize = properties.pp;
}
return queryData;
},
buildV3GetQueryFromQueryResource: function(query, additionalParams) {
var queryData = {};
queryData["columns[]"] = query.columns.map(function(column) { return column.id; });
queryData.showSums = query.sums;
queryData.timelineVisible = query.timelineVisible;
queryData.showHierarchies = query.showHierarchies;
if(query.groupBy) {
queryData.groupBy = query.groupBy.id;
}
// Filters
filters = query.filters.map(function(filter) {
var id = filter.filter.$href;
id = id.substring(id.lastIndexOf('/') + 1, id.length);
var operator = filter.operator.id;
var values = _.map(filter.values, UrlParamsHelper.queryFilterValueToParam);
var filterHash = {};
filterHash[id] = { operator: operator,
values: values }
return filterHash;
});
queryData.filters = JSON.stringify(filters);
// Sortation
queryData.sortBy = JSON.stringify(query
.sortBy
.map(function(sort) { return sort.id.split('-') }));
return angular.extend(queryData, additionalParams);
},
queryFilterValueToParam: function(value) {
if (typeof(value) === 'boolean') {
return value ? 't': 'f';
}
if (!value) {
return '';
} else if (value.id) {
return value.id.toString();
} else if (value.$href && value.$href.match(/^\/api\/v3\/string_objects/i)) {
return value.$href.match(/value=([^&]+)/)[1].toString();
} else if (value.$href) {
return value.$href.split('/').pop().toString();
} else {
return value.toString();
}
}
};
return UrlParamsHelper;
};