Mozilla/mozilla/camino/feedhandlers/feedhandlers.applescript.in
alqahira%ardisson.org 4d57406071 Bug 474260 - Remove fake feeds: support from feedhandlers. r/sr=smorgan
git-svn-id: svn://10.0.0.236/trunk@255951 18797224-902f-48f8-a5cc-f745e15eee43
2009-01-28 04:51:54 +00:00

150 lines
6.0 KiB
AppleScript

(* ***** BEGIN LICENSE BLOCK *****
* Version: MPL 1.1/GPL 2.0/LGPL 2.1
*
* The contents of this file are subject to the Mozilla Public License Version
* 1.1 (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
* http://www.mozilla.org/MPL/
*
* Software distributed under the License is distributed on an "AS IS" basis,
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
* for the specific language governing rights and limitations under the
* License.
*
* The Original Code is Camino Feed Handlers.
*
* The Initial Developer of the Original Code is
* Smokey Ardisson <alqahira@ardisson.org>.
* Portions created by the Initial Developer are Copyright (C) 2007
* the Initial Developer. All Rights Reserved.
*
* Contributor(s):
* Smokey Ardisson <alqahira@ardisson.org> (Original Author)
*
* Alternatively, the contents of this file may be used under the terms of
* either the GNU General Public License Version 2 or later (the "GPL"), or
* the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
* in which case the provisions of the GPL or the LGPL are applicable instead
* of those above. If you wish to allow use of your version of this file only
* under the terms of either the GPL or the LGPL, and not to allow others to
* use your version of this file under the terms of the MPL, indicate your
* decision by deleting the provisions above and replace them with the notice
* and other provisions required by the GPL or the LGPL. If you do not delete
* the provisions above, a recipient may use your version of this file under
* the terms of any one of the MPL, the GPL or the LGPL.
*
* ***** END LICENSE BLOCK ***** *)
(*
Indirectly reference Camino to prevent osacompile on the tinderbox from
including paths to different copies of Camino per-arch in the compiled
main.scpt, since this breaks unify.
*)
property caminoApp : "Camino"
property feedProtocols : {"feed"}
property httpProtocols : {"http", "https"}
on open location inURL
(*
Encode any common non-alpha characters in URLs--except colon (:), which is
handled below--to improve compatibility with URL parsers of major web feed
readers on edge-case feeds like Bugzilla bug lists and MediaWiki "Recent
Changes" pages. Double-encode any existing percent signs (%) because
Firefox does this to make the iGoogle URL parser happy.
*)
set theTIDs to AppleScript's text item delimiters
set AppleScript's text item delimiters to "%"
set theUnencodedItems to text items of inURL
set AppleScript's text item delimiters to "%25"
set partiallyEncodedURI to (text items 1 through end of theUnencodedItems) ¬
as string
set AppleScript's text item delimiters to "&"
set theUnencodedItems to text items of partiallyEncodedURI
set AppleScript's text item delimiters to "%26"
set partiallyEncodedURI to (text items 1 through end of theUnencodedItems) ¬
as string
set AppleScript's text item delimiters to "="
set theUnencodedItems to text items of partiallyEncodedURI
set AppleScript's text item delimiters to "%3D"
set partiallyEncodedURI to (text items 1 through end of theUnencodedItems) ¬
as string
set AppleScript's text item delimiters to "?"
set theUnencodedItems to text items of partiallyEncodedURI
set AppleScript's text item delimiters to "%3F"
set partiallyEncodedURI to (text items 1 through end of theUnencodedItems) ¬
as string
set AppleScript's text item delimiters to "/"
set theUnencodedItems to text items of partiallyEncodedURI
set AppleScript's text item delimiters to "%2F"
set partiallyEncodedURI to (text items 1 through end of theUnencodedItems) ¬
as string
set AppleScript's text item delimiters to theTIDs
(*
We're going to split the inURL string on colons (:) and append non-"feed"
fragments to build the full URL we send to the handler. We do this because
we can get feed urls in the following five formats
feed:http://
feed:https://
feed://
feed:feed://
feed:feed:http://
and because some feeds have unescaped colons (:) in the URL string, e.g.
http://wiki.caminobrowser.org/index.php?title=Special:Recentchanges&feed=atom
*)
set theTIDs to AppleScript's text item delimiters
set AppleScript's text item delimiters to ":"
set theItems to text items of partiallyEncodedURI
set AppleScript's text item delimiters to "%3A"
(*
If the first text item is feed, get rid of it. If the second item is also
feed, get rid of it. Then, if the third text item is http or https, take
it and the whole rest of the string (it's a valid url). Otherwise, append
http in front of the third item.
If the second text item is http or https, take it and the whole rest of the
string (it's a valid url). Else ( //server.tld/url ) append http to the
rest of the string. This works fine as long as we're never handed URIs in
the format feed://http://server.tld/url or feed://https://server.tld/url.
Restore the TIDs when we're done constructing the URL we'll send back to
Camino.
*)
if the first text item of theItems is in feedProtocols then
if the second text item of theItems is in feedProtocols then
if the third text item of theItems is in httpProtocols then
set feedURLasHTTP to (text items 3 through end of theItems) ¬
as string
else
set feedURLasHTTP to ("http%3A" & text items 3 through ¬
end of theItems) as string
end if
else
if the second text item of theItems is in httpProtocols then
set feedURLasHTTP to (text items 2 through end of theItems) ¬
as string
else
set feedURLasHTTP to ("http%3A" & text items 2 through ¬
end of theItems) as string
end if
end if
end if
set AppleScript's text item delimiters to theTIDs
my passFeedtoHandlerURL(feedURLasHTTP)
end open location
on passFeedtoHandlerURL(feedURLasHTTP)
set feedHandler to "%FEED_HANDLER_URL%"
tell application caminoApp -- in case Camino isn't set as the default browser
activate -- don't stay in the background when the sender was another app
open location feedHandler & feedURLasHTTP
end tell
end passFeedtoHandlerURL