Skip to content
Snippets Groups Projects
  1. May 11, 2016
    • akwizgran's avatar
      2a980af6
    • akwizgran's avatar
      Merge branch '274-code-encapsulation' into 'master' · 41e282f1
      akwizgran authored
      274 code encapsulation
      
      The goal of this branch is to better compartmentalize, structure and simplify the code in the Android module. It does this via the following techniques:
      
      * Extended use of Dagger by introducing a component for Activities that injects, among other things, SharedPreferences and Fragments. The latter makes it possible to mock fragments more easily and letting Dagger automatically handle its injections.
      * Decouple Briar API code, from the activities and Fragments, and encapsulate in re-usable Controller classes
      * Introduce a UI-thread App event bus that the Helper classes use to communicate with Activities & Fragments.
      * Define the testing methods in the briar-android module per Robolectric and Mockito
      
      NOTE! Don't be alarmed if you see the contact introduction message one more time, one of the changes was to purify UI shared preferences from the Briar shared preferences, which now only contain preferences related to the API and it's usage.
      
      closes #274 
      
      
      
      See merge request !130
      41e282f1
    • Ernir Erlingsson's avatar
      rebased with master · f81c8fcb
      Ernir Erlingsson authored
      f81c8fcb
    • Ernir Erlingsson's avatar
      c93e78f1
    • Ernir Erlingsson's avatar
      cleanup · d4232b6a
      Ernir Erlingsson authored
      d4232b6a
    • Ernir Erlingsson's avatar
      cleanup · 64d1e25a
      Ernir Erlingsson authored
      64d1e25a
    • Ernir Erlingsson's avatar
    • Ernir Erlingsson's avatar
      finished Activity mock · 80f79d9e
      Ernir Erlingsson authored
      80f79d9e
    • Ernir Erlingsson's avatar
      interlude · 8bb1d444
      Ernir Erlingsson authored
      8bb1d444
    • Ernir Erlingsson's avatar
      implementing robolectric and mockito · adb7d37f
      Ernir Erlingsson authored
      adb7d37f
    • Ernir Erlingsson's avatar
      further polish · aa3ef896
      Ernir Erlingsson authored
      aa3ef896
    • Ernir Erlingsson's avatar
      cleanup and minor refactoring · da50c5dc
      Ernir Erlingsson authored
      da50c5dc
    • Ernir Erlingsson's avatar
      merge and update · e809aaa9
      Ernir Erlingsson authored
      e809aaa9
    • Ernir Erlingsson's avatar
      comment & log cleanup · ef3b41dc
      Ernir Erlingsson authored
      ef3b41dc
    • Ernir Erlingsson's avatar
      Fix transport update · 604cfd52
      Ernir Erlingsson authored
      604cfd52
    • Ernir Erlingsson's avatar
      Switched AppBus for ResultHandler, Controller for Helper. Added the basics for... · a14e9812
      Ernir Erlingsson authored
      Switched AppBus for ResultHandler, Controller for Helper. Added the basics for LifecycleControllers and implemented it for BriarActivity and NavDrawerActivity
      a14e9812
    • Ernir Erlingsson's avatar
      fix compile error · 27098db1
      Ernir Erlingsson authored
      27098db1
    • Ernir Erlingsson's avatar
      cleaning up · 8d021aab
      Ernir Erlingsson authored
      8d021aab
    • Ernir Erlingsson's avatar
      merge · 5d8ba660
      Ernir Erlingsson authored
      5d8ba660
    • Ernir Erlingsson's avatar
      phase 2: helpers and app bus · a9de1252
      Ernir Erlingsson authored
      a9de1252
    • Ernir Erlingsson's avatar
      phase 1: Activities and Fragments · 7b552bde
      Ernir Erlingsson authored
      7b552bde
    • akwizgran's avatar
      Merge branch '121-new-forum-sharing-ui' into 'master' · 1724fbe5
      akwizgran authored
      Forum Sharing Client UI
      
      This changes `ShareForumActivity` to use two fragments to facilitate
      forum sharing with the new Forum Sharing Client backend.
      
      The `ContactSelectorFragment` allows the user to select a
      number of contacts. If there is an ongoing sharing session or the forum
      is already shared with the contact, it is disabled in the list. If there
      is at least one contact selected, a button appears in the toolbar that
      brings the user to the `ShareForumMessageFragment` where the user can
      write an optional message to be send along with the invitation.
      
      After sending an invitation, the user is brought back to the forum that
      she shared and there is a snackbar showing up briefly to indicate the
      successful invitation.
      
      The invitation is shown along with the message within the private
      conversation of each contact. The person who shares the forum also sees
      the invitation and the message as outgoing messages that also display
      the current status of the messages.
      
      A notification is shown like for other private messages as well.
      
      Please note that this commit does not include a way for users to respond
      to invitations. This is in MR !172. Both MRs are based on the new backend in !170.
      
      ![device-2016-05-03-182928](/uploads/48499ca4c149a8e7f13f8b28a24537ad/device-2016-05-03-182928.png)
      ![device-2016-05-03-182855](/uploads/5f49c43bf8f39780862247848a5b9c27/device-2016-05-03-182855.png)
      
      See merge request !171
      1724fbe5
    • akwizgran's avatar
      Merge branch '121-new-available-forums-ui' into 'master' · 5aa44f4c
      akwizgran authored
      Modernize AvailableForumsActivity
      
      Turn list of available forums into a `BriarRecyclerView` with XML layout.
      Allow to respond to forum invitations from the list of available forums.
      The user can either accept or decline an invitation.
      
      ![device-2016-05-03-141150](/uploads/0998877d47fb7a3eafe3a90f917d8716/device-2016-05-03-141150.png)
      
      See merge request !172
      5aa44f4c
    • Torsten Grote's avatar
      Forum Sharing Client UI · 3a9d66a8
      Torsten Grote authored
      This changes `ShareForumActivity` to use two fragments to facilitate
      forum sharing with the new Forum Sharing Client backend.
      
      The `ContactSelectorFragment` allows the user to select a
      number of contacts. If there is an ongoing sharing session or the forum
      is already shared with the contact, it is disabled in the list. If there
      is at least one contact selected, a button appears in the toolbar that
      brings the user to the `ShareForumMessageFragment` where the user can
      write an optional message to be send along with the invitation.
      
      After sending an invitation, the user is brought back to the forum that
      she shared and there is a snackbar showing up briefly to indicate the
      successful invitation.
      
      The invitation is shown along with the message within the private
      conversation of each contact. The person who shares the forum also sees
      the invitation and the message as outgoing messages that also display
      the current status of the messages.
      
      A notification is shown like for other private messages as well.
      
      Please note that this commit does not include a way for users to respond
      to invitations.
      3a9d66a8
  2. May 10, 2016
    • Torsten Grote's avatar
      Modernize AvailableForumsActivity · bcfdd848
      Torsten Grote authored
      Turn list of available forums into a BriarRecyclerView with XML layout.
      Allow to respond to forum invitations from the list of available forums.
      The user can either accept or decline an invitation.
      bcfdd848
    • akwizgran's avatar
      Bumped DB schema version. · 2cc621ed
      akwizgran authored
      Prevent old forum sharing messages from causing spurious exceptions.
      2cc621ed
    • akwizgran's avatar
      Merge branch '305-new-forum-list' into 'master' · 0b348653
      akwizgran authored
      New List of Forums
      
      The adapter of the `ForumListFragment` has been changed into a
      `BriarRecyclerView` and all its code has been adapted and simplified
      accordingly.
      
      All UI of the forum list is now defined in XML layouts. This enabled me to move the snackbar into onCreate().
      
      Before:
      
      ![device-2016-05-03-165331](/uploads/961cc2c043464f446584de4ae0ad527b/device-2016-05-03-165331.png)
      
      After:
      
      ![device-2016-05-03-165117](/uploads/e22ede3e9a3330762b3ae84f86ca6ec5/device-2016-05-03-165117.png)
      
      
      See merge request !175
      0b348653
    • akwizgran's avatar
      Merge branch 'aggressive-polling' into 'master' · 1bd5c0b1
      akwizgran authored
      Try harder to connect to contacts
      
      * When an outgoing connection is lost, try to reconnect to the contact straight away
      * Use periodic polling for Tor, regardless of whether our hidden service descriptor has been published
      * Reduce polling intervals for all plugins (this can be reverted if we solve the connectivity issues)
      
      Closes #262, #314. Hopefully helps with #361.
      
      See merge request !177
      1bd5c0b1
    • akwizgran's avatar
      Merge branch '339-forum-sharing-integration-tests' into 'master' · d4abfe77
      akwizgran authored
      Forum Sharing Integration Tests
      
      This adds integration tests for these cases:
      * normal invitation session where invitee accepts
      * normal invitation session where invitee declines
      * session where invitee leaves again after she joined
      * session where sharer leaves after invitee has joined
      * session where sharer leaves before invitee can respond
      * sharer reuses the session ID of the previous session
      * after accepting the invitation, the invitee invites the sharer to the same forum
      * after session contacts delete each other and session states get cleaned up
      
      Closes #339
      
      See merge request !173
      d4abfe77
  3. May 09, 2016
    • akwizgran's avatar
      Merge branch '322-forum-sharing-client' into 'master' · f22ea852
      akwizgran authored
      Forum Sharing Client Backend
      
      This MR replaces the old `ForumSharingManagerImpl` with a new one
      which is based on state machines and the `ProtocolEngine`.
      
      There is a `SharerEngine` and a `InviteeEngine` that take care of state
      transitions, messages, events and trigger actions to be carried out by
      the `ForumSharingManagerImpl`. This is all very similar to the
      Introduction Client.
      
      The general sharing paradigm has been changed from sharing as a state to
      sharing as an action. Now the UI can allow users to invite contacts to
      forums. The contacts can accept or decline the invitation. Also, the
      Forum Sharing Manager is notified when users leave a forum.
      
      Please note that you will need the UI to actually test this. It is coming up soon in another MR.
      
      Closes #322
      
      See merge request !170
      f22ea852
  4. May 06, 2016
Loading