Skip to content
Snippets Groups Projects
  1. May 29, 2017
  2. May 26, 2017
  3. May 25, 2017
  4. May 24, 2017
  5. 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
  6. 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
  7. May 15, 2017
  8. May 12, 2017
  9. May 11, 2017
    • Emmanuel Lepage Vallée's avatar
      call: Prevent ambiguous Ring URI from being used in placeCall() · b845bb79
      Emmanuel Lepage Vallée authored
      
      As of now, unresolved registered names could be passed to placeCall
      with a Ring account. As the URI parser doesn't have the metadata
      required to correctly pick the scheme, it used `sip:`. This isn't
      correct when the account is a Ring account (but the URI is unaware
      of that).
      
      This commit set the correct scheme before calling placeCall.
      
      Change-Id: Ied3cfd1ef7f7171e3bf05d51a245e35e2df95ffb
      Reviewed-by: default avatarNicolas Jäger <nicolas.jager@savoirfairelinux.com>
      b845bb79
    • Emmanuel Lepage Vallée's avatar
      contactMethod: Improve merging · ef03edda
      Emmanuel Lepage Vallée authored
      
      Before this commit, registeredName, contact and presence would be
      lost when merging. Given it could not really happen for SIP
      account, it wasn't an issue. However, it is an issue for Ring
      accounts.
      
      Change-Id: I973e7b6a26f76c6d656dee211f201b9ef6f3c826
      Reviewed-by: default avatarNicolas Jäger <nicolas.jager@savoirfairelinux.com>
      ef03edda
    • Emmanuel Lepage Vallée's avatar
      phonedirectory: Add more explicit support for deduplicated RingId · 5aecbb16
      Emmanuel Lepage Vallée authored
      
      This commit complements the previous one. Now that Ring CMs are
      properly deduplicated once their registeredName is validated,
      disable the old entry in the debug model.
      
      It also foward the deduplication signal to the RecentModel/Timeline
      can also take notice. This greatly simplify the code.
      
      Change-Id: I4e8839744d0eb12aa32f4bf6a8a50f7e0cc51d88
      Reviewed-by: default avatarNicolas Jäger <nicolas.jager@savoirfairelinux.com>
      5aecbb16
    • Emmanuel Lepage Vallée's avatar
      contactmethod: Add an `isDuplicate()` accessor · 2a6d1153
      Emmanuel Lepage Vallée authored
      
      Will help makes some other algorithm saner
      
      Change-Id: I5fae9bab47c6b508a95cf318c1a5a9fdb26d4bb3
      Reviewed-by: default avatarNicolas Jäger <nicolas.jager@savoirfairelinux.com>
      2a6d1153
    • Emmanuel Lepage Vallée's avatar
      contactMethod: Prevent duplication of registered name CMs · a1f07277
      Emmanuel Lepage Vallée authored
      
      **WARNING** This makes the setRegisteredName method private and
      thus break the API. That method could not stay public as this
      would potentially corrupt the indexes.
      
      This patch adds the registered names to the global name
      directory. If `::getNumber()` is used with a known registered
      name, no new CM are created.
      
      This patch fixes the "most common" case, but doesn't implement the
      following corner cases:
      
       * If the registered name is already part of the directory, but
         not fully linked to an account and/or RingId.
       * If there is multiple name service
      
      For the multiple name service, the
      `NameDirectory::registeredNameFound` signal will need to use full
      URIs for the names (ring:foo@ns.ring.cx). This is out of this
      patch scope and will have side effects that needs to be addressed
      in each clients.
      
      Change-Id: If06561dc4cb56453cc77092f4c30c633e852b7fd
      Reviewed-by: default avatarNicolas Jäger <nicolas.jager@savoirfairelinux.com>
      a1f07277
    • Emmanuel Lepage Vallée's avatar
      certificatemodel: Make the CertificateModel reentrant · 44dcaf01
      Emmanuel Lepage Vallée authored
      
      First of all, [begin/end][Insert/Remove][Rows/Columns] is a
      flat transaction and can only exist once per model. The code
      was calling begin in other begin section due to some
      lazy-loading code. This could result in SIGSEGV if the model
      had active proxies.
      
      More importantly, this code is called from the collections.
      Some collections run in different threads. The class had a
      mutex, but only used it in half the places it should have
      been used. This caused a crash on the macOS and KDE client.
      I could not manage to crash the Gnome client, but it is
      probably possible. ASAN also got asserted due to this even
      when it would have otherwise not crashed.
      
      The commit alse fix a memory leak when the ID was duplicated
      by the race condition. This is a band-aid on the problem: IDs
      potentially not unique. However a band-aid is better than
      acrash and the patch to fix this would be too invasive to get
      past Gerrit.
      
      Change-Id: I92e313d0243659b6af374a0cbf8bab18c3f6ba76
      Reviewed-by: default avatarNicolas Jäger <nicolas.jager@savoirfairelinux.com>
      44dcaf01
  10. May 10, 2017
  11. May 08, 2017
Loading