Skip to content
Snippets Groups Projects
  1. Jul 18, 2017
  2. Jul 17, 2017
  3. Jul 13, 2017
  4. Jul 09, 2017
  5. Jul 06, 2017
    • Guillaume Roguez's avatar
      connect to daemon ContactAdded signal · c956c7d2
      Guillaume Roguez authored and Adrien Béraud's avatar Adrien Béraud committed
      Daemon ContactAdded signal is used to add/update contact information
      like if it "trusted" by user or by peer (i.e. 'confirmed' property).
      Create new Contact method using this signal and add it
      to account daemon contacts list.
      
      Change-Id: I76a3fdd9b92380c16e205ca437e25d977f0b1c11
      c956c7d2
  6. Jul 04, 2017
  7. Jun 22, 2017
  8. Jun 14, 2017
  9. Jun 12, 2017
  10. Jun 06, 2017
    • Guillaume Roguez's avatar
      cm: replace BLANK() by default ctor · 2b578f00
      Guillaume Roguez authored
      
      Replace ContactMethod::BLANK() by ContactMethod::ContactMethod(),
      the default constructor.
      
      This is the general way to construct a instance with "defaults"
      behaviours, like BLANK tries to do.
      
      Also removes the nasty usage of BLANK:
      - it returns a constant instance
      - the code uses it with a const_cast<>, removing the only protection!
      No sense and extremly dangerous to operate with such global and
      non protected instance.
      
      Side effect: Call::peerContactMethod() returns a nullptr
      and not a valid and !!mutable!! global const instance if no cm exists.
      
      Change-Id: I8a29eacad657b76a7670055f27afeb6db98d78dc
      Reviewed-by: default avatarOlivier Soldano <olivier.soldano@savoirfairelinux.com>
      2b578f00
    • Guillaume Roguez's avatar
      profilemodel: fix nullptr access · 24e642a6
      Guillaume Roguez authored
      
      my previous patch [cm: replace BLANK() by default ctor]
      causes a nullptr access in ProfileModelPrivate::slotAccountAdded()
      There is a call to acc->contactMethod() that returns a nullptr.
      
      I really tried to understand this call and its impact...
      ... no success!
      Removing the line seems to have no effect during tests on Gnome client.
      
      LRC is magic!
      
      Change-Id: Icdd33989e5d90bfb93227d82354643269fe944ff
      Reviewed-by: default avatarOlivier Soldano <olivier.soldano@savoirfairelinux.com>
      24e642a6
  11. Jun 05, 2017
  12. Jun 01, 2017
  13. May 31, 2017
    • Nicolas Jager's avatar
      PersonModel : implementation of BannedContactModel · 04bd4a97
      Nicolas Jager authored
      - add a new class BannedContactModel. This model loads at start of the
      client a list from the daemon to figure which ContactMethods are
      banned.
      
      - it updates the list (for now, we can only ban) when a peer is banned.
      
      [Guillaume: fix typo in ci msg]
      
      Change-Id: I2367c8918dd4f743ebbce2b0c1c90e5fde71c45b
      04bd4a97
  14. May 30, 2017
  15. May 29, 2017
  16. May 26, 2017
  17. May 25, 2017
  18. May 24, 2017
  19. May 23, 2017
    • Stepan Salenikovich's avatar
      Prevent Person duplication from peer vCards · d887e516
      Stepan Salenikovich authored
      Due to the ability to receive vCards from other peers (during a
      Call or from a ContactRequest), there are many possibilities to
      create duplicate Person objects. This is because up until now we
      have been using the Person's UID as a unique identifier. However
      the UID has come from the vCard, and we cannot trust the vCards we
      receive from peers to have either unique UIDs when they are
      different contacts, nor the same UID if its the same contact.
      
      Thus in the case of received vCards, we identify whether or not
      a new Person should be created based on the ContactMethod.
      
      Note that this doesn't necessarily solve the issue in the case
      we have multiple ContactMethods with the same RingID (this may
      happen when we have multiple Accounts communicating with the same
      peer). However, this is a step in the right direction.
      
      Change-Id: I9c05fe00fc46ba0e26e8886cad33cf0fd4afeb81
      d887e516
  20. May 19, 2017
    • Stepan Salenikovich's avatar
      RecentModel: fix ContactMethod node removal · 463b45ec
      Stepan Salenikovich authored
      This fixes one particular instance of "contact duplication" in the
      RecentModel. When we had a call from a peer incoming for the very
      first time, a ContactMethod ndoe was first being created. Then we
      received the profile from the peer, and so a Person node was created.
      However, the contactChanged signal could be called before the Person
      node is created; in this case the ContactMethod node was not being
      removed and the result was a duplication of the the same contact
      twice in the RecentModel: once as a CM and once as a Person.
      
      Calling slotLastUsedTimeChanged() on the new Person ensures that
      the Person node is created.
      
      We also call slotContactChanged() from slotPersonAdded() to reduce
      code duplication.
      
      Change-Id: Ia9b49ab939a017052cccc69f8d72df5db0aef41d
      463b45ec
  21. May 15, 2017
  22. May 12, 2017
Loading