Closed Bug 969217 Opened 11 years ago Closed 11 years ago

[Gaia] [NFC] Improvement for the function of sharing of URLs

Categories

(Firefox OS Graveyard :: NFC, defect)

ARM
Gonk (Firefox OS)
defect
Not set
normal

Tracking

(Not tracked)

RESOLVED FIXED
1.4 S1 (14feb)

People

(Reporter: kchang, Assigned: s.x.veerapandian)

References

Details

(Whiteboard: [FT:RIL])

Attachments

(2 files, 1 obsolete file)

After fixing Bug 903250, there are a lot of bugs coming. We should improve the function of sharing of URLs by using the library provided by bug 963556.
Hi Ken, I will do modification on [Bug 903250] according with NFC Shared Library [Bug 963556].
blocking-b2g: --- → 1.4?
Whiteboard: [FT:RIL]
Target Milestone: --- → 1.4 S1 (14feb)
New patch for NFC URL content sharing. It uses NFC Shared Library [https://github.com/svic/gaia/blob/Bug_963556/shared/js/nfc_util.js]. I integrated and Tested in Nexus-4 devices. PR: https://github.com/mozilla-b2g/gaia/pull/16120 For removing ‘nfc-manager’ permission from browser [https://bugzilla.mozilla.org/show_bug.cgi?id=963488#c3], I need info for implementation. In browser js file, HandleVisibilityChange() provides the Browser exit information. I could not differentiate normal exit and Shrink UI Exit. For this purpose only I am using ‘nfc-manager-tech-state’. Alternate Solution may be: 1. How do I get the Current NFC Discover state? 2. In browser.js where else I can check the Exit operation?
Attachment #8373215 - Flags: review?(bfrancis)
Attachment #8373215 - Flags: review?(alive)
Flags: needinfo?(alive)
Why do you needs to know it's shrinking or not?
Flags: needinfo?(alive)
In browser.js 'document.hidden' provide the browser exit state. Both Normal Exit and Shrink UI(NFC Discover time) becomes TRUE. How to differentiate it?
Flags: needinfo?(alive)
Comment on attachment 8373215 [details] [diff] [review] 0001-Bug-969217-Improvement-for-the-function-of-sharing-o.patch Review of attachment 8373215 [details] [diff] [review]: ----------------------------------------------------------------- This patch seems to mainly just simplify code which has already landed, so I gave it feedback+, but bug 963488 indicates that there may be a problem with the underlying implementation. I would prefer Alive to review this to make sure he is happy with the implementation. I don't understand why we are landing this code on master if it is only for a demo and will never ship. Would it be better to create your own feature branch?
Attachment #8373215 - Flags: review?(bfrancis) → feedback+
Sorry, I still don't understand... My question is just why do you need to differentiate shrinking and background? nfc-manage permission shouldn't be used for this purpose, if it's a normal use case we need to reconsider the API design again.
Flags: needinfo?(alive) → needinfo?(s.x.veerapandian)
Depends on: 963556
(In reply to Alive Kuo [:alive][NEEDINFO!][:艾莉芙] from comment #6) > nfc-manage permission shouldn't be used for this purpose, if it's a normal > use case we need to reconsider the API design again. saminath: NFC manager permissions is not needed for normal applications, it is needed for the System App only, as documented by the WebNFC wiki: https://wiki.mozilla.org/WebAPI/WebNFC#Application_Permissions For example, the current browser incorrectly opens whenever a technology is found, because nfc-manager targeted messages are solely intended for the certified System app that handles incoming NFC messages. In the activity handler of the app, implement the following to handle tech-discovered (and possibly, tech-lost but this has UX concerns). case 'nfc-tech-discovered': handleTechnologyDiscoveredMessages(data); // data includes the NDEF record, usually. break; There is a limitation, similar to Android actually, where Techlost should not handled (or even sent). The reason being, if it handles it, it usually launches an action. When the tag leaves, UX wise, who needs message besides System App? The background app would need to wake up, or be brought forward on top to handle it, away from the newly launched app (a callback won't have this issue, but it won't be symmetric with how the data is delivered via activity).
Comment on attachment 8373215 [details] [diff] [review] 0001-Bug-969217-Improvement-for-the-function-of-sharing-o.patch Cancel review until I am conveyed nfc-manage permission is necessary for this patch.
Attachment #8373215 - Flags: review?(alive)
I have discussion with alive in offline, I modified the code accordingly. 1. Get rid of Nfc-manager accessing from nfc.js and corresponding handler binding in browser.js 2. Manifest has only ‘nfc’ access permission. PR: https://github.com/mozilla-b2g/gaia/pull/16211 Thanks. Alive
Attachment #8374794 - Flags: review?(alive)
Flags: needinfo?(s.x.veerapandian)
Comment on attachment 8374794 [details] [diff] [review] 0001-Bug-969217-Improvement-for-the-function-of-sharing-o.patch Review of attachment 8374794 [details] [diff] [review]: ----------------------------------------------------------------- Garner, please also have a joint review.
Attachment #8374794 - Flags: review?(dgarnerlee)
Comment on attachment 8374794 [details] [diff] [review] 0001-Bug-969217-Improvement-for-the-function-of-sharing-o.patch Review of attachment 8374794 [details] [diff] [review]: ----------------------------------------------------------------- r+ if you move onpeerready registration to Browser.init. ::: apps/browser/js/browser.js @@ -616,1 @@ > if (window.navigator.mozNfc) { I think you should just move this part to Browser.init
Attachment #8374794 - Flags: review?(alive) → review+
Comment on attachment 8374794 [details] [diff] [review] 0001-Bug-969217-Improvement-for-the-function-of-sharing-o.patch Review of attachment 8374794 [details] [diff] [review]: ----------------------------------------------------------------- ::: apps/browser/js/browser.js @@ +607,2 @@ > if (window.navigator.mozNfc) { > window.navigator.mozNfc.onpeerready = NfcURI.handlePeerConnectivity; I don't see the rest of the browser code here, but does UX have a case where this is set and unset? (Possible use case: the user is entering data on a long and involved HTML form, and won't want to potentially lose focus to it behind another tab somewhere). ::: apps/browser/js/nfc.js @@ +7,3 @@ > lookupUrlRecordType: function nfc_lookupUrlRecordType(uri) { > + for (var i = 1; i < NDEF.URIS.length; i++) { > + var len = NDEF.URIS[i].length; General nits: 2 column indenting/code beautification for checkin. @@ +34,2 @@ > if (split.identifier == 0) { > + urlPayload = currentUrl; Nit: indenting.
Attachment #8374794 - Flags: review+
I'll try to land 963556 soon for MWC, but if not, please change the shared/js/nfc_util.js include to be a local app include.
Attachment #8374794 - Flags: review?(dgarnerlee) → review+
(In reply to Garner Lee from comment #12) > Comment on attachment 8374794 [details] [diff] [review] > 0001-Bug-969217-Improvement-for-the-function-of-sharing-o.patch > > Review of attachment 8374794 [details] [diff] [review]: > ----------------------------------------------------------------- > > ::: apps/browser/js/browser.js > @@ +607,2 @@ > > if (window.navigator.mozNfc) { > > window.navigator.mozNfc.onpeerready = NfcURI.handlePeerConnectivity; > > I don't see the rest of the browser code here, but does UX have a case where > this is set and unset? (Possible use case: the user is entering data on a > long and involved HTML form, and won't want to potentially lose focus to it > behind another tab somewhere). Don't think it's in the scope of this bug. Also we will never know what's the current page is doing (form entering) right now from browser app. Security risk!
PR: https://github.com/mozilla-b2g/gaia/pull/16292 Modification details: 1. Openready is only present in Browser.init(), nowhere else. 2. Indenting problem resolved, TI build is success. 3. Temporarily created the nfc_util.js in locally (Remove after shared nfc library integrated- Bug 963556 ) 4. Index.html change the js/nfc_util.js -> shared/js/nfc_util.js (Change after nfc shared library integrated – Bug 963556) Thanks.
Attachment #8376226 - Flags: review?(alive)
Comment on attachment 8376226 [details] [diff] [review] 0001-Bug-969217-Improvement-for-the-function-of-sharing-o.patch Carrying over r+.
Attachment #8376226 - Flags: review?(alive) → review+
Attachment #8374794 - Attachment is obsolete: true
Alive, could you merge the patch? Thanks.
Flags: needinfo?(alive)
(In reply to Tim Guan-tin Chien [:timdream] (MoCo-TPE) (please ni?) from comment #17) > Alive, could you merge the patch? Thanks. Greg is working on this. Thanks for Greg's help.
Flags: needinfo?(alive) → needinfo?(gweng)
Status: NEW → RESOLVED
Closed: 11 years ago
Flags: needinfo?(gweng)
Resolution: --- → FIXED
blocking-b2g: 1.4? → ---
You need to log in before you can comment on or make changes to this bug.

Attachment

General

Creator:
Created:
Updated:
Size: