| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2011 Google Inc. All rights reserved. | 2 * Copyright (C) 2011 Google Inc. All rights reserved. |
| 3 * | 3 * |
| 4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
| 5 * modification, are permitted provided that the following conditions are | 5 * modification, are permitted provided that the following conditions are |
| 6 * met: | 6 * met: |
| 7 * | 7 * |
| 8 * * Redistributions of source code must retain the above copyright | 8 * * Redistributions of source code must retain the above copyright |
| 9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
| 10 * * Redistributions in binary form must reproduce the above | 10 * * Redistributions in binary form must reproduce the above |
| (...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 62 } | 62 } |
| 63 return stringBuilder.toString(); | 63 return stringBuilder.toString(); |
| 64 } | 64 } |
| 65 | 65 |
| 66 MHTMLArchive::MHTMLArchive() | 66 MHTMLArchive::MHTMLArchive() |
| 67 { | 67 { |
| 68 } | 68 } |
| 69 | 69 |
| 70 MHTMLArchive* MHTMLArchive::create(const KURL& url, PassRefPtr<SharedBuffer> dat
a) | 70 MHTMLArchive* MHTMLArchive::create(const KURL& url, PassRefPtr<SharedBuffer> dat
a) |
| 71 { | 71 { |
| 72 // MHTML pages can only be loaded from local URLs and http/https URLs. | 72 // MHTML pages can only be loaded from local URLs, http/https URLs, and cont
ent URLs(Android specific). |
| 73 // The latter is now allowed due to full sandboxing enforcement on MHTML pag
es. | 73 // The latter is now allowed due to full sandboxing enforcement on MHTML pag
es. |
| 74 if (!SchemeRegistry::shouldTreatURLSchemeAsLocal(url.protocol()) && !url.pro
tocolIsInHTTPFamily()) | 74 if (!canLoadArchive(url)) |
| 75 return nullptr; | 75 return nullptr; |
| 76 | 76 |
| 77 MHTMLParser parser(data); | 77 MHTMLParser parser(data); |
| 78 HeapVector<Member<ArchiveResource>> resources = parser.parseArchive(); | 78 HeapVector<Member<ArchiveResource>> resources = parser.parseArchive(); |
| 79 if (resources.isEmpty()) | 79 if (resources.isEmpty()) |
| 80 return nullptr; // Invalid MHTML file. | 80 return nullptr; // Invalid MHTML file. |
| 81 | 81 |
| 82 MHTMLArchive* archive = new MHTMLArchive; | 82 MHTMLArchive* archive = new MHTMLArchive; |
| 83 // The first document suitable resource is the main resource of the top fram
e. | 83 // The first document suitable resource is the main resource of the top fram
e. |
| 84 for (size_t i = 0; i < resources.size(); ++i) { | 84 for (size_t i = 0; i < resources.size(); ++i) { |
| 85 const AtomicString& mimeType = resources[i]->mimeType(); | 85 const AtomicString& mimeType = resources[i]->mimeType(); |
| 86 if (archive->mainResource() || !MIMETypeRegistry::isSupportedNonImageMIM
EType(mimeType) || MIMETypeRegistry::isSupportedJavaScriptMIMEType(mimeType) ||
mimeType == "text/css") | 86 if (archive->mainResource() || !MIMETypeRegistry::isSupportedNonImageMIM
EType(mimeType) || MIMETypeRegistry::isSupportedJavaScriptMIMEType(mimeType) ||
mimeType == "text/css") |
| 87 archive->addSubresource(resources[i].get()); | 87 archive->addSubresource(resources[i].get()); |
| 88 else | 88 else |
| 89 archive->setMainResource(resources[i].get()); | 89 archive->setMainResource(resources[i].get()); |
| 90 } | 90 } |
| 91 return archive; | 91 return archive; |
| 92 } | 92 } |
| 93 | 93 |
| 94 bool MHTMLArchive::canLoadArchive(const KURL& url) |
| 95 { |
| 96 // MHTML pages can only be loaded from local URLs, http/https URLs, and cont
ent URLs(Android specific). |
| 97 // The latter is now allowed due to full sandboxing enforcement on MHTML pag
es. |
| 98 if (SchemeRegistry::shouldTreatURLSchemeAsLocal(url.protocol())) |
| 99 return true; |
| 100 if (url.protocolIsInHTTPFamily()) |
| 101 return true; |
| 102 #if OS(ANDROID) |
| 103 if (url.protocolIs("content")) |
| 104 return true; |
| 105 #endif |
| 106 return false; |
| 107 } |
| 108 |
| 94 void MHTMLArchive::generateMHTMLHeader( | 109 void MHTMLArchive::generateMHTMLHeader( |
| 95 const String& boundary, const String& title, const String& mimeType, | 110 const String& boundary, const String& title, const String& mimeType, |
| 96 SharedBuffer& outputBuffer) | 111 SharedBuffer& outputBuffer) |
| 97 { | 112 { |
| 98 ASSERT(!boundary.isEmpty()); | 113 ASSERT(!boundary.isEmpty()); |
| 99 ASSERT(!mimeType.isEmpty()); | 114 ASSERT(!mimeType.isEmpty()); |
| 100 | 115 |
| 101 DateComponents now; | 116 DateComponents now; |
| 102 now.setMillisecondsSinceEpochForDateTime(currentTimeMS()); | 117 now.setMillisecondsSinceEpochForDateTime(currentTimeMS()); |
| 103 // TODO(lukasza): Passing individual date/time components seems fragile. | 118 // TODO(lukasza): Passing individual date/time components seems fragile. |
| (...skipping 134 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 238 return m_subresources.get(url.getString()); | 253 return m_subresources.get(url.getString()); |
| 239 } | 254 } |
| 240 | 255 |
| 241 DEFINE_TRACE(MHTMLArchive) | 256 DEFINE_TRACE(MHTMLArchive) |
| 242 { | 257 { |
| 243 visitor->trace(m_mainResource); | 258 visitor->trace(m_mainResource); |
| 244 visitor->trace(m_subresources); | 259 visitor->trace(m_subresources); |
| 245 } | 260 } |
| 246 | 261 |
| 247 } // namespace blink | 262 } // namespace blink |
| OLD | NEW |