Skip to content
Snippets Groups Projects
  1. May 11, 2016
    • 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
    • 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
  5. May 05, 2016
    • akwizgran's avatar
      Merge branch '371-no-introduction-session-reuse' into 'master' · 7a87d417
      akwizgran authored
      Do not allow session ID reuse and clean up sessions for introducee
      
      It was possible that a malicious introducer sends new request with the
      same session ID that was used previously and thus causing introducees to
      have multiple states for the same session ID.
      This commits prevents that from happening and adds an integration test
      for that scenario.
      
      Also if an introducee removes an introducer, all past session states
      will be deleted from the database. For this, a test was added as well.
      
      Closes #371
      Closes #372
      
      See merge request !179
      7a87d417
  6. May 04, 2016
    • Torsten Grote's avatar
      Do not allow session ID reuse and clean up sessions for introducee · 685e1422
      Torsten Grote authored
      It was possible that a malicious introducer sends new request with the
      same session ID that was used previously and thus causing introducees to
      have multiple states for the same session ID.
      This commits prevents that from happening and adds an integration test
      for that scenario.
      
      Also if an introducee removes an introducer, all past session states
      will be deleted from the database. For this, a test was added as well.
      
      Closes #371
      Closes #372
      685e1422
    • Torsten Grote's avatar
      New List of Forums · 271e390b
      Torsten Grote authored
      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.
      271e390b
    • Torsten Grote's avatar
      Forum Sharing Integration Tests · 49c9af27
      Torsten Grote authored
      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
      49c9af27
    • Torsten Grote's avatar
      Forum Sharing Client backend · 9bef114c
      Torsten Grote authored
      This commit 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 invitiation. Also, the
      Forum Sharing Manger is notified when users leave a forum.
      
      Closes #322
      9bef114c
    • Torsten Grote's avatar
      db322679
    • Torsten Grote's avatar
    • Torsten Grote's avatar
      Remember the selected fragment from the NavDrawer · 6f1360c3
      Torsten Grote authored
      and stay in it when configuration changes
      
      Closes #370
      6f1360c3
    • akwizgran's avatar
      5a84e0fe
  7. May 03, 2016
    • Torsten Grote's avatar
      Merge branch '340-progress-background' into 'master' · 6751ded3
      Torsten Grote authored
      Restore opaque background to progress wheels
      
      Closes #340
      
      See merge request !174
      6751ded3
    • akwizgran's avatar
      7e755e26
    • akwizgran's avatar
      Updated forum toasts and renamed delete icon. · 5fab9c38
      akwizgran authored
      5fab9c38
    • akwizgran's avatar
      Merge branch '305-remove-forum' into 'master' · da60e567
      akwizgran authored
      Move forum removal action from long press menu to action bar
      
      This is part of the UI changes for #305 
      
      See merge request !164
      da60e567
    • Torsten Grote's avatar
      Move forum removal action from long press menu to action bar · 684898ef
      Torsten Grote authored
      part of UI changes for #305
      684898ef
    • akwizgran's avatar
      Merge branch '154-ongoing-notification' into 'master' · 3b65144f
      akwizgran authored
      Set ongoing notification to minimum priority
      
      Setting the priority of the ongoing notification to PRIORITY_MIN prevents it from being shown in the status bar on Android 4.1 and later. The service still runs in the foreground.
      
      Thanks to @str4d for finding the solution. Closes #154.
      
      See merge request !169
      3b65144f
    • akwizgran's avatar
      Merge branch '322-prepare-new-forum-sharing' into 'master' · a655df73
      akwizgran authored
      Prepare for new Forum Sharing Client
      
      Methods for creating, adding and removing forums have been moved to the
      `ForumManager`. In order to still handle removing forums properly, a
      `RemoveForumHook` has been introduced.
      
      Methods for sharing forums with all current and future contacts have
      been removed along with the localGroup where this information was saved.
      
      The `ShareForumActivity` now has the proper label.
      
      The `SessionId` and the `ProtocolEngine` have been moved to the
      `clients` package.
      
      This addresses part of #322 and part of what has been discussed in #320.
      
      See merge request !156
      a655df73
    • Torsten Grote's avatar
      Prepare for new Forum Sharing Client · 9f9a2163
      Torsten Grote authored
      Methods for creating, adding and removing forums have been moved to the
      `ForumManager`. In order to still handle removing forums properly, a
      `RemoveForumHook` has been introduced.
      
      Methods for sharing forums with all current and future contacts have
      been removed along with the localGroup where this information was saved.
      
      The `ShareForumActivity` now has the proper label.
      
      The `SessionId` and the `ProtocolEngine` have been moved to the
      `clients` package.
      
      This addresses part of #322 and part of what has been discussed in #320.
      9f9a2163
    • akwizgran's avatar
      Merge branch '314-tor-sleep' into 'master' · bba99947
      akwizgran authored
      Hold a wake lock while Tor is connected to the internet
      
      This is a partial fix for #314. As noted on that ticket, if a Tor connection is lost for any reason other than the device sleeping, the plugin won't try to replace the lost connection. I'm leaving the ticket open until that more general issue is solved.
      
      The Tor plugin uses several variables to keep track of its connectivity status. This patch refactors those variables into an inner class to improve readability and ensure they're accessed atomically. However, it's still possible for the plugin's state to become inconsistent with the state of the Tor process. For example, calls to updateConnectionStatus() may run concurrently on the IO executor, so their calls to enableNetwork() may be interleaved. As usual, locking would solve this problem but create the potential for deadlock, so I won't try to solve it in this patch.
      
      See merge request !168
      bba99947
    • akwizgran's avatar
      Renamed circuit status method. · 400a11e3
      akwizgran authored
      400a11e3
    • akwizgran's avatar
      Merge branch '316-mobile-data-setting' into 'master' · 189efe8d
      akwizgran authored
      Fix name of Tor mobile data setting
      
      Closes #316.
      
      See merge request !167
      189efe8d
    • akwizgran's avatar
      Merge branch '331-viewfinder' into 'master' · b57b65e8
      akwizgran authored
      Reinitialise viewfinder when camera view is shown
      
      Thanks to @str4d for finding the cause of the bug. Closes #331.
      
      See merge request !165
      b57b65e8
Loading