From 08079d74cd123ae62e250425ec46496e23635e55 Mon Sep 17 00:00:00 2001 From: Rafal Michalski <michalski.raf@xxxxxxxxx> Date: Tue, 28 Sep 2010 11:05:52 +0200 Subject: [PATCH 4/6] Binding och call log with phonebook After outgoing call is done to number from phonebook then outgoing call history will be shown with data about caller - downloaded in vCard structure. --- plugins/phonebook-tracker.c | 34 +++++++++++++++++++++++++++++++++- 1 files changed, 33 insertions(+), 1 deletions(-) diff --git a/plugins/phonebook-tracker.c b/plugins/phonebook-tracker.c index 50b2896..5752536 100644 --- a/plugins/phonebook-tracker.c +++ b/plugins/phonebook-tracker.c @@ -268,12 +268,44 @@ "nco:title(?a) nco:phoneNumber(?t) nmo:receivedDate(?call) " \ "nmo:isSent(?call) nmo:isAnswered(?call) ?x " \ "WHERE { " \ + "{ " \ + "?x a nco:Contact . " \ + "?x nco:hasPhoneNumber ?h . " \ + "?call a nmo:Call ; " \ + "nmo:to ?x ; " \ + "nmo:isSent true . " \ + "?c a nco:PersonContact . " \ + "?c nco:hasPhoneNumber ?h . " \ + "OPTIONAL { ?c nco:hasEmailAddress ?e . } " \ + "OPTIONAL { ?c nco:hasPostalAddress ?p . } " \ + "OPTIONAL { " \ + "?c nco:hasAffiliation ?a . " \ + "OPTIONAL { ?a nco:hasEmailAddress ?ew . } " \ + "OPTIONAL { ?a nco:hasPostalAddress ?pw . } " \ + "OPTIONAL { ?a nco:org ?o . } " \ + "} " \ + "} UNION { " \ + "?x a nco:Contact . " \ + "?x nco:hasPhoneNumber ?w . " \ + "?call a nmo:Call ; " \ + "nmo:to ?x ; " \ + "nmo:isSent true . " \ + "?c a nco:PersonContact . " \ + "OPTIONAL { ?c nco:hasEmailAddress ?e . } " \ + "OPTIONAL { ?c nco:hasPostalAddress ?p . } " \ + "?c nco:hasAffiliation ?a . " \ + "?a nco:hasPhoneNumber ?w . " \ + "OPTIONAL { ?a nco:hasEmailAddress ?ew . } " \ + "OPTIONAL { ?a nco:hasPostalAddress ?pw . } " \ + "OPTIONAL { ?a nco:org ?o . } " \ + "} UNION { " \ "?x a nco:Contact . " \ "?x nco:hasPhoneNumber ?t . " \ "?call a nmo:Call ; " \ "nmo:to ?x ; " \ "nmo:isSent true . " \ - "} ORDER BY DESC(nmo:sentDate(?call))" + "} " \ + "} ORDER BY DESC(nmo:sentDate(?call)) " #define OUTGOING_CALLS_LIST \ "SELECT ?c nco:nameFamily(?c) " \ -- 1.6.3.3