use of de.janrufmonitor.repository.types.IIdentifyCallerRepository in project janrufmonitor by tbrandt77.
the class OldDatFileCallerImporter method migrateCallerFromString.
private ICaller migrateCallerFromString(String scaller) {
if (scaller != null && scaller.trim().length() == 0)
return null;
StringTokenizer st = new StringTokenizer(scaller, ";");
String number = st.nextToken().trim();
String caller = st.nextToken().trim();
String reject = "0";
if (st.hasMoreTokens())
reject = st.nextToken().trim();
IPhonenumber pn = PIMRuntime.getInstance().getCallerFactory().createPhonenumber(number.substring(1));
try {
ICaller migCaller = null;
ICallerManager def = PIMRuntime.getInstance().getCallerManagerFactory().getDefaultCallerManager();
if (def != null && def.isActive() && def.isSupported(IIdentifyCallerRepository.class)) {
migCaller = ((IIdentifyCallerRepository) def).getCaller(pn);
} else
throw new CallerNotFoundException();
StringTokenizer ctoken = new StringTokenizer(caller, " ");
IName name = PIMRuntime.getInstance().getCallerFactory().createName("", "");
if (ctoken.hasMoreTokens()) {
name.setFirstname(ctoken.nextToken());
}
if (ctoken.hasMoreTokens()) {
name.setLastname(ctoken.nextToken());
}
if (ctoken.hasMoreTokens()) {
name.setAdditional(ctoken.nextToken());
}
while (ctoken.hasMoreTokens()) {
name.setAdditional(name.getAdditional() + " " + ctoken.nextToken());
}
migCaller.setName(name);
if (reject.equalsIgnoreCase("1")) {
IAttribute att = PIMRuntime.getInstance().getCallerFactory().createAttribute(IJAMConst.ATTRIBUTE_NAME_REJECT, IJAMConst.ATTRIBUTE_VALUE_YES);
migCaller.setAttribute(att);
}
if (reject.equalsIgnoreCase("0")) {
IAttribute att = PIMRuntime.getInstance().getCallerFactory().createAttribute(IJAMConst.ATTRIBUTE_NAME_REJECT, IJAMConst.ATTRIBUTE_VALUE_NO);
migCaller.setAttribute(att);
}
LogManager.getLogManager().getLogger(IJAMConst.DEFAULT_LOGGER).info(migCaller.toString());
return migCaller;
} catch (CallerNotFoundException e) {
LogManager.getLogManager().getLogger(IJAMConst.DEFAULT_LOGGER).warning(e.getMessage());
}
return null;
}
use of de.janrufmonitor.repository.types.IIdentifyCallerRepository in project janrufmonitor by tbrandt77.
the class AbstractCallerDatabaseHandler method getCaller.
public ICaller getCaller(IPhonenumber pn) throws SQLException {
if (!isConnected())
try {
this.connect();
} catch (ClassNotFoundException e) {
throw new SQLException(e.getMessage());
}
PreparedStatement ps = this.getStatement("SELECT_CALLER_PHONE");
String p = pn.getTelephoneNumber();
ResultSet rs = null;
// check for internal telephone system numbers
if (this.isInternalNumber(pn)) {
ps.setString(1, p);
rs = ps.executeQuery();
while (rs.next()) {
this.m_logger.info("Found exact match of call number: " + p);
try {
return Serializer.toCaller(rs.getString("content").getBytes(), this.getRuntime());
} catch (SerializerException e) {
this.m_logger.log(Level.SEVERE, e.getMessage(), e);
}
}
}
int maxLength = this.maxInternalNumberLength();
// p must be an internal number but has no entry in this caller manager
if (p.length() < maxLength)
return null;
// check for international call
if (p.startsWith(this.getPrefix())) {
this.m_logger.info("Found international call number: " + p);
ICaller internationaCaller = null;
ICallerManager cmg = this.getRuntime().getCallerManagerFactory().getDefaultCallerManager();
if (cmg != null && cmg.isActive() && cmg.isSupported(IIdentifyCallerRepository.class)) {
try {
internationaCaller = ((IIdentifyCallerRepository) cmg).getCaller(pn);
} catch (CallerNotFoundException e) {
this.m_logger.log(Level.SEVERE, e.getMessage(), e);
}
}
if (internationaCaller != null)
pn = internationaCaller.getPhoneNumber();
ps.setString(1, pn.getTelephoneNumber());
rs = ps.executeQuery();
while (rs.next()) {
try {
ICaller c = Serializer.toCaller(rs.getString("content").getBytes(), this.getRuntime());
if (pn.getTelephoneNumber().equalsIgnoreCase(c.getPhoneNumber().getTelephoneNumber()) && pn.getIntAreaCode().equalsIgnoreCase(c.getPhoneNumber().getIntAreaCode())) {
// found international number
return c;
}
} catch (SerializerException e) {
this.m_logger.log(Level.SEVERE, e.getMessage(), e);
}
}
}
// check for extension
if (pn.getIntAreaCode() == null || pn.getIntAreaCode().length() == 0) {
pn.setIntAreaCode(this.getDefaultIntAreaCode());
}
for (int i = 0; i < p.length() - maxLength; i++) {
ps.setString(1, p.substring(0, p.length() - i) + "%");
rs = ps.executeQuery();
while (rs.next()) {
try {
ICaller c = Serializer.toCaller(rs.getString("content").getBytes(), this.getRuntime());
if (p.startsWith(c.getPhoneNumber().getTelephoneNumber()) && pn.getIntAreaCode().equalsIgnoreCase(c.getPhoneNumber().getIntAreaCode())) {
// found extension phone
String extension = p.substring(c.getPhoneNumber().getTelephoneNumber().length(), p.length());
this.m_logger.info("Found call extension -" + extension + " for call number: " + p);
c.setUUID(new UUID().toString());
c.getPhoneNumber().setTelephoneNumber(p);
c.getPhoneNumber().setCallNumber(c.getPhoneNumber().getCallNumber() + extension);
// add attributes
IAttribute att = getRuntime().getCallerFactory().createAttribute(IJAMConst.ATTRIBUTE_NAME_EXTENSION, extension);
c.setAttribute(att);
att = getRuntime().getCallerFactory().createAttribute(IJAMConst.ATTRIBUTE_NAME_CENTRAL_NUMBER_OF_EXTENSION, p.substring(0, p.length() - extension.length()));
c.setAttribute(att);
return c;
}
} catch (SerializerException e) {
this.m_logger.log(Level.SEVERE, e.getMessage(), e);
}
}
}
return null;
}
use of de.janrufmonitor.repository.types.IIdentifyCallerRepository in project janrufmonitor by tbrandt77.
the class AbstractMultiPhoneCallerDatabaseHandler method getCaller.
@SuppressWarnings("resource")
public ICaller getCaller(IPhonenumber pn) throws SQLException {
if (!isConnected())
try {
this.connect();
} catch (ClassNotFoundException e) {
throw new SQLException(e.getMessage());
}
PreparedStatement ps = this.getStatement("SELECT_CALLER_PHONE");
String p = pn.getTelephoneNumber();
ICaller c = null;
ResultSet rs = null;
// check for internal telephone system numbers
if (this.isInternalNumber(pn)) {
ps.setString(1, p);
rs = ps.executeQuery();
while (rs.next()) {
this.m_logger.info("Found exact match of call number: " + p);
try {
c = Serializer.toCaller(rs.getString("content").getBytes(), this.getRuntime());
if (c instanceof IMultiPhoneCaller) {
IPhonenumber cp = null;
for (int i = 0, j = ((IMultiPhoneCaller) c).getPhonenumbers().size(); i < j; i++) {
cp = (IPhonenumber) ((IMultiPhoneCaller) c).getPhonenumbers().get(i);
if (cp.getTelephoneNumber().startsWith(p)) {
this.m_logger.info("Found correct phonenumber match: " + p + " = " + cp.getTelephoneNumber());
((IMultiPhoneCaller) c).getPhonenumbers().clear();
c.setPhoneNumber(cp);
return c;
}
}
}
} catch (SerializerException e) {
this.m_logger.log(Level.SEVERE, e.getMessage(), e);
}
}
}
int maxLength = this.maxInternalNumberLength();
// p must be an internal number but has no entry in this caller manager
if (p.length() < maxLength)
return null;
// check for international call
if (p.startsWith(this.getPrefix())) {
this.m_logger.info("Found international call number: " + p);
ICaller internationaCaller = null;
ICallerManager cmg = this.getRuntime().getCallerManagerFactory().getDefaultCallerManager();
if (cmg != null && cmg.isActive() && cmg.isSupported(IIdentifyCallerRepository.class)) {
try {
internationaCaller = ((IIdentifyCallerRepository) cmg).getCaller(pn);
} catch (CallerNotFoundException e) {
this.m_logger.log(Level.SEVERE, e.getMessage(), e);
}
}
if (internationaCaller != null)
pn = internationaCaller.getPhoneNumber();
ps.setString(1, pn.getTelephoneNumber());
rs = ps.executeQuery();
while (rs.next()) {
try {
c = Serializer.toCaller(rs.getString("content").getBytes(), this.getRuntime());
if (c instanceof IMultiPhoneCaller) {
IPhonenumber cp = null;
for (int i = 0, j = ((IMultiPhoneCaller) c).getPhonenumbers().size(); i < j; i++) {
cp = (IPhonenumber) ((IMultiPhoneCaller) c).getPhonenumbers().get(i);
if (pn.getTelephoneNumber().equalsIgnoreCase(cp.getTelephoneNumber()) && pn.getIntAreaCode().equalsIgnoreCase(cp.getIntAreaCode())) {
this.m_logger.info("Found correct phonenumber match: " + p + " = " + cp.getTelephoneNumber());
((IMultiPhoneCaller) c).getPhonenumbers().clear();
c.setPhoneNumber(cp);
// found international number
return c;
}
}
} else if (c instanceof ICaller) {
if (pn.getTelephoneNumber().equalsIgnoreCase(c.getPhoneNumber().getTelephoneNumber()) && pn.getIntAreaCode().equalsIgnoreCase(c.getPhoneNumber().getIntAreaCode())) {
// found international number
return c;
}
}
} catch (SerializerException e) {
this.m_logger.log(Level.SEVERE, e.getMessage(), e);
}
}
}
// check for extension
if (pn.getIntAreaCode() == null || pn.getIntAreaCode().length() == 0) {
pn.setIntAreaCode(this.getDefaultIntAreaCode());
}
PreparedStatement ps2 = this.getStatement("SELECT_PHONE_REF_COUNT");
if (ps2 == null)
return null;
boolean multiprocess = false;
for (int i = 0; i < p.length() - maxLength; i++) {
ps2.setString(1, p.substring(0, p.length() - i) + "%");
rs = ps2.executeQuery();
while (rs.next()) {
multiprocess = rs.getInt(1) > 1;
}
if (!multiprocess) {
ps.setString(1, p.substring(0, p.length() - i) + "%");
rs = ps.executeQuery();
while (rs.next()) {
try {
c = Serializer.toCaller(rs.getString("content").getBytes(), this.getRuntime());
ICaller nc = this.process(c, pn, p);
if (nc != null)
return nc;
} catch (SerializerException e) {
this.m_logger.log(Level.SEVERE, e.getMessage(), e);
}
}
} else {
// added 2008/04/18: processing of multiple callers is possible
PreparedStatement ps3 = this.getStatement("SELECT_PHONE_REF");
ps3.setString(1, p.substring(0, p.length() - i) + "%");
rs = ps3.executeQuery();
List uuids = new ArrayList(2);
while (rs.next()) {
uuids.add(rs.getString(1));
}
// process all UUIDs
String uuid = null;
ps3 = this.getStatement("SELECT_CALLER_PHONE2");
for (int j = 0; j < uuids.size(); j++) {
uuid = (String) uuids.get(j);
ps3.setString(1, uuid);
rs = ps3.executeQuery();
while (rs.next()) {
try {
c = Serializer.toCaller(rs.getString("content").getBytes(), this.getRuntime());
ICaller nc = this.process(c, pn, p);
if (nc != null)
return nc;
} catch (SerializerException e) {
this.m_logger.log(Level.SEVERE, e.getMessage(), e);
}
}
}
}
}
return null;
}
use of de.janrufmonitor.repository.types.IIdentifyCallerRepository in project janrufmonitor by tbrandt77.
the class AbstractWebCallerManager method getCaller.
public ICaller getCaller(IPhonenumber p) throws CallerNotFoundException {
if (p == null)
throw new CallerNotFoundException("Phone number is not set (null). No caller found.");
if (p.isClired())
throw new CallerNotFoundException("Phone number is CLIR. Identification impossible.");
if (PhonenumberAnalyzer.getInstance(this.getRuntime()).isInternal(p))
throw new CallerNotFoundException("Phone number is internal number.");
IPhonenumber number = this.getRuntime().getCallerFactory().createPhonenumber(p.getTelephoneNumber());
if (isUsedCache() && this.m_unidentified != null && this.m_unidentified.containsKey(number.getTelephoneNumber())) {
Integer io = (Integer) this.m_unidentified.get(number.getTelephoneNumber());
if (io.intValue() == 10) {
this.m_unidentified.remove(number.getTelephoneNumber());
} else {
this.m_unidentified.put(number.getTelephoneNumber(), new Integer(io.intValue() + 1));
}
throw new CallerNotFoundException("Phone number " + number.getTelephoneNumber() + " not identified. (cached)");
}
ICaller caller = null;
if (isUsedCache() && this.m_cache != null && this.m_cache.containsKey(number)) {
caller = (ICaller) this.m_cache.get(number);
if (this.m_logger.isLoggable(Level.INFO))
this.m_logger.info("Taking caller from cache: " + caller);
if (caller != null)
return caller;
} else {
if (this.m_logger.isLoggable(Level.INFO))
this.m_logger.info("Number is not cached, start identifiing ...");
IPhonenumber pn = null;
try {
ICallerManager defaultManager = this.getRuntime().getCallerManagerFactory().getDefaultCallerManager();
if (defaultManager != null && defaultManager.isActive() && defaultManager.isSupported(IIdentifyCallerRepository.class)) {
ICaller defaultIdentified = ((IIdentifyCallerRepository) defaultManager).getCaller(number);
pn = defaultIdentified.getPhoneNumber();
}
} catch (CallerNotFoundException e) {
// ignore this exception
}
// check correct country code
if (!this.getSupportedIntAreaCode().equalsIgnoreCase("00")) {
if (pn != null && !pn.getIntAreaCode().equalsIgnoreCase(this.getSupportedIntAreaCode()))
throw new CallerNotFoundException("Phone number has country code " + pn.getIntAreaCode() + ". Caller manager " + this.getID() + " is supporting only " + this.getSupportedIntAreaCode());
// added 2013/07/22: number format compatibility 0911234567 must be equal +49 (911) 234567
if (pn != null)
number.setTelephoneNumber(pn.getTelephoneNumber());
}
// added 2009/05/28
// add detection of web services which provides number in middle of URL
String url = this.getURL();
if (url.indexOf(IJAMConst.GLOBAL_VARIABLE_WEBCM_NUMBER) > 0) {
url = StringUtils.replaceString(url, IJAMConst.GLOBAL_VARIABLE_WEBCM_NUMBER, (number.getTelephoneNumber().startsWith("0") ? "" : "0") + number.getTelephoneNumber());
} else {
// added 2010/11/18: added URL attribute parsing
String urlx = url;
url = Formatter.getInstance(this.getRuntime()).parse(url, pn);
if (urlx.equalsIgnoreCase(url))
url += (number.getTelephoneNumber().startsWith("0") ? "" : "0") + number.getTelephoneNumber();
}
if (this.m_logger.isLoggable(Level.INFO))
this.m_logger.info("URL to call: " + url);
AbstractURLRequester r = this.createURLRequester(url, this.getSkipBytes(), number.getTelephoneNumber());
try {
long ts = System.currentTimeMillis();
Executor ex = new Executor(r);
Thread t = new Thread(ex);
t.start();
while (t.isAlive() && (System.currentTimeMillis() - ts < r.getTimeout())) {
Thread.sleep(100);
}
if (ex != null && ex.isFailed()) {
if (this.m_unidentified != null && !this.m_unidentified.containsKey(number.getTelephoneNumber()))
this.m_unidentified.put(number.getTelephoneNumber(), new Integer(1));
throw new CallerNotFoundException("Phone number " + number.getTelephoneNumber() + " not identified.", (ex.getException() != null ? ex.getException() : new Exception()));
}
if (t.isAlive())
throw new Exception("Identification thread is blocking.");
// r.go();
} catch (Exception e) {
if (this.m_unidentified != null && !this.m_unidentified.containsKey(number.getTelephoneNumber()))
this.m_unidentified.put(number.getTelephoneNumber(), new Integer(1));
throw new CallerNotFoundException("Phone number " + number.getTelephoneNumber() + " not identified: " + e.getMessage(), e);
}
IAttributeMap m = r.getAttributes();
if (pn == null)
pn = r.getPhonenumber();
if (!getKeepSourceNumber() && pn != null && r.getPhonenumber() != null && !r.getPhonenumber().getTelephoneNumber().endsWith(pn.getTelephoneNumber())) {
pn = r.getPhonenumber();
if (this.m_logger.isLoggable(Level.INFO))
this.m_logger.info("Incoming call number " + number.getTelephoneNumber() + " was not identified but extension " + pn.getTelephoneNumber());
}
caller = this.getRuntime().getCallerFactory().createCaller(pn);
caller.setAttributes(m);
IAttribute cm = this.getRuntime().getCallerFactory().createAttribute(IJAMConst.ATTRIBUTE_NAME_CALLERMANAGER, this.getID());
caller.setAttribute(cm);
// add caller to cache
if (this.m_cache != null)
this.m_cache.put(number, caller);
return caller;
}
throw new CallerNotFoundException("No caller found for number " + number);
}
use of de.janrufmonitor.repository.types.IIdentifyCallerRepository in project janrufmonitor by tbrandt77.
the class AbstractPhonesPage method getCaller.
private ICaller getCaller(IPhonenumber pn, List managers) {
if (pn.isClired()) {
return this.getRuntime().getCallerFactory().createCaller(this.getRuntime().getCallerFactory().createName("", ""), this.getRuntime().getCallerFactory().createPhonenumber(true));
}
if (pn.getIntAreaCode().equalsIgnoreCase(IJAMConst.INTERNAL_CALL) && pn.getCallNumber().equalsIgnoreCase(IJAMConst.INTERNAL_CALL_NUMBER_SYMBOL)) {
return (this.getRuntime().getCallerFactory().createCaller(this.getRuntime().getCallerFactory().createName("", ""), this.getRuntime().getCallerFactory().createPhonenumber(IJAMConst.INTERNAL_CALL, "", IJAMConst.INTERNAL_CALL_NUMBER_SYMBOL)));
}
if (managers == null)
managers = this.getActiveCallerManagers();
ICallerManager man = null;
List remoteManagers = new ArrayList();
for (int i = 0; i < managers.size(); i++) {
man = (ICallerManager) managers.get(i);
// first only check local repository managers for performance
if (!(man instanceof ILocalRepository)) {
remoteManagers.add(man);
} else {
try {
if (man != null && man.isActive() && man.isSupported(IIdentifyCallerRepository.class))
return ((IIdentifyCallerRepository) man).getCaller(pn);
} catch (CallerNotFoundException e) {
this.m_logger.warning(e.getMessage());
}
}
}
// check for all non-local repositorymanagers
for (int i = 0; i < remoteManagers.size(); i++) {
man = (ICallerManager) remoteManagers.get(i);
try {
if (man != null && man.isActive() && man.isSupported(IIdentifyCallerRepository.class))
return ((IIdentifyCallerRepository) man).getCaller(pn);
} catch (CallerNotFoundException e) {
this.m_logger.warning(e.getMessage());
}
}
return null;
}
Aggregations