From 36b73bf25407fbc0591d33d3b0d39059bdce7005 Mon Sep 17 00:00:00 2001 From: nickw Date: Mon, 11 Jan 2010 23:51:26 +0000 Subject: Always generating action tokens with output/confirmlink. Includes a check for actions already defining the tokens. git-svn-id: http://code.elgg.org/elgg/trunk@3799 36083f99-b078-4883-b0ff-0f9b5a30f544 --- engine/lib/elgglib.php | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) (limited to 'engine/lib/elgglib.php') diff --git a/engine/lib/elgglib.php b/engine/lib/elgglib.php index d5d0828b6..c0d19743a 100644 --- a/engine/lib/elgglib.php +++ b/engine/lib/elgglib.php @@ -2413,6 +2413,40 @@ interface Friendable { public function countObjects($subtype = ""); } +/** + * Rebuilds the parsed URL + * + * @param array $parts Associative array of URL components like parse_url() returns + * @return str Full URL + * @since 1.7 + */ +function elgg_http_build_url(array $parts) { + return "{$parts['scheme']}://{$parts['host']}{$parts['path']}?{$parts['query']}"; +} + +/** + * Ensures action tokens are present in the given link + * + * @param str $link Full action URL + * @return str Validated URL + * @since 1.7 + */ +function elgg_validate_action_url($link) { + $url = parse_url($link); + parse_str($url['query'], $query); + if (array_key_exists('__elgg_token', $query)) { + return $link; + } + + // apend action tokens to the existing query + $query['__elgg_ts'] = time(); + $query['__elgg_token'] = generate_action_token($query['__elgg_ts']); + $url['query'] = http_build_query($query); + + // rebuild the full url + return elgg_http_build_url($url); +} + /** * Server javascript pages. -- cgit v1.2.3