Skip to content

Commit aea85c5

Browse files
committedJan 4, 2022
Remove URL related APIs.
**BREAKING**: Remove `forge.util.makeLink`, `forge.util.makeRequest`, `forge.util.parseFragment`, `forge.util.getQueryVariables`. Replace with `URL`, `URLSearchParams`, and custom code as needed.
1 parent db8016c commit aea85c5

File tree

4 files changed

+18
-228
lines changed

4 files changed

+18
-228
lines changed
 

‎CHANGELOG.md

+3
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,9 @@ Forge ChangeLog
2121
continue development it in other project, please let the maintainers know.
2222
Due to use in the test suite, a modified version is located in
2323
`tests/support/`.
24+
- **BREAKING**: Remove `forge.util.makeLink`, `forge.util.makeRequest`,
25+
`forge.util.parseFragment`, `forge.util.getQueryVariables`. Replace with
26+
`URL`, `URLSearchParams`, and custom code as needed.
2427

2528
### Changed
2629
- **BREAKING**: Increase supported Node.js version to 6.13.0 for URL support.

‎lib/log.js

+10-5
Original file line numberDiff line numberDiff line change
@@ -298,15 +298,20 @@ if(typeof(console) !== 'undefined' && 'log' in console) {
298298
* that could otherwise be limited by a user config.
299299
*/
300300
if(sConsoleLogger !== null) {
301-
var query = forge.util.getQueryVariables();
302-
if('console.level' in query) {
301+
var query;
302+
if(typeof(window) !== 'undefined' && window.location) {
303+
query = new URL(window.location.href).searchParams;
304+
} else {
305+
query = new URLSearchParams();
306+
}
307+
if(query.has('console.level')) {
303308
// set with last value
304309
forge.log.setLevel(
305-
sConsoleLogger, query['console.level'].slice(-1)[0]);
310+
sConsoleLogger, query.get('console.level').slice(-1)[0]);
306311
}
307-
if('console.lock' in query) {
312+
if(query.has('console.lock')) {
308313
// set with last value
309-
var lock = query['console.lock'].slice(-1)[0];
314+
var lock = query.get('console.lock').slice(-1)[0];
310315
if(lock == 'true') {
311316
forge.log.lock(sConsoleLogger);
312317
}

‎lib/util.js

-218
Original file line numberDiff line numberDiff line change
@@ -2258,224 +2258,6 @@ util.clearItems = function(api, id, location) {
22582258
_callStorageFunction(_clearItems, arguments, location);
22592259
};
22602260

2261-
/* Storage for query variables */
2262-
var _queryVariables = null;
2263-
2264-
/**
2265-
* Returns the window location query variables. Query is parsed on the first
2266-
* call and the same object is returned on subsequent calls. The mapping
2267-
* is from keys to an array of values. Parameters without values will have
2268-
* an object key set but no value added to the value array. Values are
2269-
* unescaped.
2270-
*
2271-
* ...?k1=v1&k2=v2:
2272-
* {
2273-
* "k1": ["v1"],
2274-
* "k2": ["v2"]
2275-
* }
2276-
*
2277-
* ...?k1=v1&k1=v2:
2278-
* {
2279-
* "k1": ["v1", "v2"]
2280-
* }
2281-
*
2282-
* ...?k1=v1&k2:
2283-
* {
2284-
* "k1": ["v1"],
2285-
* "k2": []
2286-
* }
2287-
*
2288-
* ...?k1=v1&k1:
2289-
* {
2290-
* "k1": ["v1"]
2291-
* }
2292-
*
2293-
* ...?k1&k1:
2294-
* {
2295-
* "k1": []
2296-
* }
2297-
*
2298-
* @param query the query string to parse (optional, default to cached
2299-
* results from parsing window location search query).
2300-
*
2301-
* @return object mapping keys to variables.
2302-
*/
2303-
util.getQueryVariables = function(query) {
2304-
var parse = function(q) {
2305-
var rval = {};
2306-
var kvpairs = q.split('&');
2307-
for(var i = 0; i < kvpairs.length; i++) {
2308-
var pos = kvpairs[i].indexOf('=');
2309-
var key;
2310-
var val;
2311-
if(pos > 0) {
2312-
key = kvpairs[i].substring(0, pos);
2313-
val = kvpairs[i].substring(pos + 1);
2314-
} else {
2315-
key = kvpairs[i];
2316-
val = null;
2317-
}
2318-
if(!(key in rval)) {
2319-
rval[key] = [];
2320-
}
2321-
// disallow overriding object prototype keys
2322-
if(!(key in Object.prototype) && val !== null) {
2323-
rval[key].push(unescape(val));
2324-
}
2325-
}
2326-
return rval;
2327-
};
2328-
2329-
var rval;
2330-
if(typeof(query) === 'undefined') {
2331-
// set cached variables if needed
2332-
if(_queryVariables === null) {
2333-
if(typeof(window) !== 'undefined' && window.location && window.location.search) {
2334-
// parse window search query
2335-
_queryVariables = parse(window.location.search.substring(1));
2336-
} else {
2337-
// no query variables available
2338-
_queryVariables = {};
2339-
}
2340-
}
2341-
rval = _queryVariables;
2342-
} else {
2343-
// parse given query
2344-
rval = parse(query);
2345-
}
2346-
return rval;
2347-
};
2348-
2349-
/**
2350-
* Parses a fragment into a path and query. This method will take a URI
2351-
* fragment and break it up as if it were the main URI. For example:
2352-
* /bar/baz?a=1&b=2
2353-
* results in:
2354-
* {
2355-
* path: ["bar", "baz"],
2356-
* query: {"k1": ["v1"], "k2": ["v2"]}
2357-
* }
2358-
*
2359-
* @return object with a path array and query object.
2360-
*/
2361-
util.parseFragment = function(fragment) {
2362-
// default to whole fragment
2363-
var fp = fragment;
2364-
var fq = '';
2365-
// split into path and query if possible at the first '?'
2366-
var pos = fragment.indexOf('?');
2367-
if(pos > 0) {
2368-
fp = fragment.substring(0, pos);
2369-
fq = fragment.substring(pos + 1);
2370-
}
2371-
// split path based on '/' and ignore first element if empty
2372-
var path = fp.split('/');
2373-
if(path.length > 0 && path[0] === '') {
2374-
path.shift();
2375-
}
2376-
// convert query into object
2377-
var query = (fq === '') ? {} : util.getQueryVariables(fq);
2378-
2379-
return {
2380-
pathString: fp,
2381-
queryString: fq,
2382-
path: path,
2383-
query: query
2384-
};
2385-
};
2386-
2387-
/**
2388-
* Makes a request out of a URI-like request string. This is intended to
2389-
* be used where a fragment id (after a URI '#') is parsed as a URI with
2390-
* path and query parts. The string should have a path beginning and
2391-
* delimited by '/' and optional query parameters following a '?'. The
2392-
* query should be a standard URL set of key value pairs delimited by
2393-
* '&'. For backwards compatibility the initial '/' on the path is not
2394-
* required. The request object has the following API, (fully described
2395-
* in the method code):
2396-
* {
2397-
* path: <the path string part>.
2398-
* query: <the query string part>,
2399-
* getPath(i): get part or all of the split path array,
2400-
* getQuery(k, i): get part or all of a query key array,
2401-
* getQueryLast(k, _default): get last element of a query key array.
2402-
* }
2403-
*
2404-
* @return object with request parameters.
2405-
*/
2406-
util.makeRequest = function(reqString) {
2407-
var frag = util.parseFragment(reqString);
2408-
var req = {
2409-
// full path string
2410-
path: frag.pathString,
2411-
// full query string
2412-
query: frag.queryString,
2413-
/**
2414-
* Get path or element in path.
2415-
*
2416-
* @param i optional path index.
2417-
*
2418-
* @return path or part of path if i provided.
2419-
*/
2420-
getPath: function(i) {
2421-
return (typeof(i) === 'undefined') ? frag.path : frag.path[i];
2422-
},
2423-
/**
2424-
* Get query, values for a key, or value for a key index.
2425-
*
2426-
* @param k optional query key.
2427-
* @param i optional query key index.
2428-
*
2429-
* @return query, values for a key, or value for a key index.
2430-
*/
2431-
getQuery: function(k, i) {
2432-
var rval;
2433-
if(typeof(k) === 'undefined') {
2434-
rval = frag.query;
2435-
} else {
2436-
rval = frag.query[k];
2437-
if(rval && typeof(i) !== 'undefined') {
2438-
rval = rval[i];
2439-
}
2440-
}
2441-
return rval;
2442-
},
2443-
getQueryLast: function(k, _default) {
2444-
var rval;
2445-
var vals = req.getQuery(k);
2446-
if(vals) {
2447-
rval = vals[vals.length - 1];
2448-
} else {
2449-
rval = _default;
2450-
}
2451-
return rval;
2452-
}
2453-
};
2454-
return req;
2455-
};
2456-
2457-
/**
2458-
* Makes a URI out of a path, an object with query parameters, and a
2459-
* fragment. Uses jQuery.param() internally for query string creation.
2460-
* If the path is an array, it will be joined with '/'.
2461-
*
2462-
* @param path string path or array of strings.
2463-
* @param query object with query parameters. (optional)
2464-
* @param fragment fragment string. (optional)
2465-
*
2466-
* @return string object with request parameters.
2467-
*/
2468-
util.makeLink = function(path, query, fragment) {
2469-
// join path parts if needed
2470-
path = jQuery.isArray(path) ? path.join('/') : path;
2471-
2472-
var qstr = jQuery.param(query || {});
2473-
fragment = fragment || '';
2474-
return path +
2475-
((qstr.length > 0) ? ('?' + qstr) : '') +
2476-
((fragment.length > 0) ? ('#' + fragment) : '');
2477-
};
2478-
24792261
/**
24802262
* Check if an object is empty.
24812263
*

‎tests/legacy/loginDemo.js

+5-5
Original file line numberDiff line numberDiff line change
@@ -29,11 +29,11 @@ var init = function($)
2929
try
3030
{
3131
// get query variables
32-
var query = forge.util.getQueryVariables();
33-
var domain = query.domain || '';
34-
var auth = query.auth || '';
35-
var redirect = query.redirect || '';
36-
var pport = query.pport || 843;
32+
var query = new URL(window.location.href).searchParams;
33+
var domain = query.get('domain') || '';
34+
var auth = query.get('auth') || '';
35+
var redirect = query.get('redirect') || '';
36+
var pport = parseInt(query.get('pport')) || 843;
3737
redirect = 'https://' + domain + '/' + redirect;
3838
if(domain)
3939
{

0 commit comments

Comments
 (0)
Please sign in to comment.