Closed Bug 1639067 Opened 4 years ago Closed 4 years ago

Open downloaded files in common web formats as file: URIs in Firefox

Categories

(Firefox :: Downloads Panel, enhancement, P1)

Desktop
All
enhancement

Tracking

()

RESOLVED FIXED
81 Branch
Tracking Status
firefox81 --- fixed

People

(Reporter: sfoster, Assigned: agashlin)

References

(Depends on 3 open bugs)

Details

(Whiteboard: [fxgrowth])

Attachments

(5 files)

There are a many file formats which Firefox is a more than adequate viewer for. When a user has downloaded a file and clicks to open that download from any of our download views, unless configured otherwise we should open compatible files in a new tab in their current browser window.

This list could grow, but as a starter maybe the following file types:
.html
.xml
.svg
.gif
.png
.jpg

See bug 1191591 where we have done this for downloaded PDF documents.
This is not the same as registering Firefox as a handler for these formats with the OS, and would not preclude the user from opening a downloaded file in their application of choice.

Adding bug 1639069 to the see-also list. 1639069 might arguably block this bug if there were concerns about breaking user work flows.

See Also: → 1191591, 1639069

Related is https://bugzilla.mozilla.org/show_bug.cgi?id=1627676 that should help us understand extensions of downloaded files.
My top priorities would be to address file extensions that would point to other browsers where we can do as good of a job:

  • .xml and .svg (currenlty IE sets itself as default)
  • webp (currently CHrome sets itself as default)
  • shtml (currently Brave sets itself as default)
  • xht and xhtml (currently IE and Edge set themselves as default)

I summarized what I saw with other browsers on https://docs.google.com/document/d/1BFpd1mNdok0ZbhlKEgExEZKPEmlmQRath_s1AmPtVug/edit

See Also: → 1637357
Depends on: 1627676
Severity: -- → S3
Priority: -- → P3

I think the right way to fix this is for the dialog to check the mimetype with the category manager. Specifically:

Services.catMan.getCategoryEntry("Gecko-Content-Viewers", mimetype)

will return a contract ID if we support viewing the mimetype, and an exception (non-NS_OK result) if not.

In theory, what with everything else in place, this should now be relatively straightforward to fix...

Assignee: nobody → agashlin
Priority: P3 → P2

(In reply to :Gijs (he/him) from comment #3)

I think the right way to fix this is for the dialog to check the mimetype with the category manager. Specifically:

Services.catMan.getCategoryEntry("Gecko-Content-Viewers", mimetype)

Which dialog are you refering to here? I ask because most of the work for bug 1639069 was in getting params to the launchDownload in DownloadIntegration.jsm and special-casing application/pdf to open directly into a tab (handleInternally).

I had thought of an explicit list of mimeTypes (perhaps as well as not instead of the category manager check) just to avoid surprises and make it easier to know what we expect to happen, and perhaps respond to user feedback on the download behavior specifically. Or is the PDF case substantially different?

(In reply to Sam Foster [:sfoster] (he/him) from comment #4)

(In reply to :Gijs (he/him) from comment #3)

I think the right way to fix this is for the dialog to check the mimetype with the category manager. Specifically:

Services.catMan.getCategoryEntry("Gecko-Content-Viewers", mimetype)

Which dialog are you refering to here?

The unknown content type dialog (which offers "open" and "save" actions).

I ask because most of the work for bug 1639069 was in getting params to the launchDownload in DownloadIntegration.jsm and special-casing application/pdf to open directly into a tab (handleInternally).

Right, instead of hardcoding application/pdf, I think the above expression will return true for both application/pdf and for a bunch of other things.

I had thought of an explicit list of mimeTypes (perhaps as well as not instead of the category manager check) just to avoid surprises and make it easier to know what we expect to happen, and perhaps respond to user feedback on the download behavior specifically. Or is the PDF case substantially different?

I don't think PDF is substantially different, though I could imagine that there would be people who'd be upset if we did this for images or some types of text/html files that they expect to open in external viewers/editors, that offer functionality which Firefox doesn't. Still, as long as we continue honouring file choices, that should be OK.

Note that in addition to this though, we'd need to update the preferences so we represent the associations involved. Though it gets a bit messy between having both a "do we ask the user when downloading" and "what is the default action" property of each mimetype/extension combination to represent in the prefs... (right now, if we always ask then that's what we'll show, and it's not obvious you could alter the default action and then alter it back to "always ask" to get the desired behaviour from a download view while maintaining choice when initially downloading, if that's what you want (e.g. because you want to pick the file saving destination)).

Status: NEW → ASSIGNED
Priority: P2 → P1

Adam, can you confirm which file types we're targeting for FX 81?

Flags: needinfo?(agashlin)
See Also: → 1652412

(In reply to Rachel Tublitz [:rachel] from comment #6)

Adam, can you confirm which file types we're targeting for FX 81?

To answer this immediate question, I'm planning on .xml (text/xml, maybe application/xml if I can get both working), .svg, (image/svg+xml) and .webp (image/webp). I don't plan on doing .shtml, .xht, .xhtml currently, as I don't have a good way of distinguishing their handler from that for .html, generally.

Flags: needinfo?(agashlin)

Also attempts some of the refactoring proposed in bug 1638913, moving
the type-specific checks out of toolkit, which is also also used
further down this patch stack.

I didn't fold PDF into this part as it has different conditions for showing
the radio button vs. viewing internally from the downloads list.

Depends on D86650

Removes the need for applications-file-ending-with-type, and avoids
replicating applications-type-*-with-type for every internally
handled file type.

Depends on D86652

I also added types from the list of extensions we register to support on
Windows, in shared.nsh SetStartMenuInternet.

Depends on D86653

No longer depends on: 1631105, 1653117
Attachment #9169326 - Attachment description: Bug 1639067 part 5 - Include Viewable Internally types in fileExtension events. r?Gijs! → Bug 1639067 Include Viewable Internally types in fileExtension events. r?Gijs!
Pushed by agashlin@mozilla.com:
https://hg.mozilla.org/integration/autoland/rev/82be6da5a371
Include Viewable Internally types in fileExtension events. r=Gijs,chutten

Adding "leave open" here to avoid the bug closing because the other commits aren't landing yet, by the looks of it.

Keywords: leave-open
Attachment #9169323 - Attachment description: Bug 1639067 part 2 - Extend "Open with" to all types viewable internally. r=Gijs! → Bug 1639067 part 2 - Extend "Open with" and overwrite description to all types viewable internally. r=Gijs!
Attachment #9169325 - Attachment description: Bug 1639067 part 4 - Generalize internal handlers in the Applications list. r?Gijs!,#fluent-reviewers! → Bug 1639067 part 4 - Generalize internal handlers in the Applications list. r?Gijs!

I was worried that this would also run into the issues in bug 1633790 (infinite tabs if Firefox is the default and set to open in default) and bug 1555637 (extra copy saved but no view if Firefox is the default and set to always save), but I wasn't able to reproduce those with XML, SVG, WebP, AVIF, or other types, with or without these patches. I suspect that there's a difference in running the document loader for these documents vs. the stream converter for pdfjs, but I haven't dug into it.

Pushed by agashlin@mozilla.com:
https://hg.mozilla.org/integration/autoland/rev/951e10b7354f
part 1 - Open more downloaded file types internally. r=Gijs
https://hg.mozilla.org/integration/autoland/rev/755fd5771648
part 2 - Extend "Open with" and overwrite description to all types viewable internally. r=Gijs
https://hg.mozilla.org/integration/autoland/rev/7bb3c2ec5c7a
part 3 - Extend "Open In System Viewer" from PDF to all viewable internally. r=Gijs
https://hg.mozilla.org/integration/autoland/rev/1e400fafd80b
part 4 - Generalize internal handlers in the Applications list. r=Gijs,preferences-reviewers,fluent-reviewers

Sorry, I should have caught that test_getMIMEInfo_pdf.js failure. I think the TV failure is bug 1641774, I'll include a fix for that as well.

Flags: needinfo?(agashlin)
Pushed by agashlin@mozilla.com:
https://hg.mozilla.org/integration/autoland/rev/b34389aab2a8
part 1 - Open more downloaded file types internally. r=Gijs
https://hg.mozilla.org/integration/autoland/rev/9cf29f703679
part 2 - Extend "Open with" and overwrite description to all types viewable internally. r=Gijs
https://hg.mozilla.org/integration/autoland/rev/a9eafc98de77
part 3 - Extend "Open In System Viewer" from PDF to all viewable internally. r=Gijs
https://hg.mozilla.org/integration/autoland/rev/70af71248a58
part 4 - Generalize internal handlers in the Applications list. r=Gijs,preferences-reviewers,fluent-reviewers
Status: ASSIGNED → RESOLVED
Closed: 4 years ago
Keywords: leave-open
OS: Unspecified → All
Hardware: Unspecified → Desktop
Resolution: --- → FIXED
Target Milestone: --- → 81 Branch
Version: unspecified → Trunk

Does this regress session restore?

I "Open in Nightly"'d something and after a session restore I just have a "file not found" tab.

Seems to be saving to a file to a temp directory which is deleted when Firefox exits.

That's a good point. We have bug 1632274 to resolve this with PDFs, but I hadn't thought about it becoming an issue with these other types.

Depends on: 1659737

(In reply to James May [:fowl2] from comment #23)

Does this regress session restore?

I "Open in Nightly"'d something and after a session restore I just have a "file not found" tab.

Seems to be saving to a file to a temp directory which is deleted when Firefox exits.

It's possible to work around this somewhat by setting pref browser.helperApps.deleteTempFileOnExit false in about:config, but that isn't a solution in general.

I am worried about the potential for data loss by changing the default option in the unknown content type dialog, I opened bug 1659737 to remove the "Open in Nightly" option for these types until we decide what is intended here.

See Also: → 1660031
See Also: → 1657421
Depends on: 1662780
Depends on: 1662792
Depends on: 1662795
Depends on: 1663143
Regressions: 1670651
You need to log in before you can comment on or make changes to this bug.

Attachment

General

Created:
Updated:
Size: