📄 registrar.java
字号:
// stateless-response (in order to avoid DoS attacks)
if (!msg.isAck()) sip_provider.sendMessage(MessageFactory.createResponse(msg,404,SipResponses.reasonOf(404),null));
else printLog("message discarded",LogLevel.HIGH);
}
/** When a new request message is received for a remote UA. */
public void processRequestToRemoteUA(Message msg)
{ printLog("inside processRequestToRemoteUA(msg)",LogLevel.MEDIUM);
// stateless-response (in order to avoid DoS attacks)
if (!msg.isAck()) sip_provider.sendMessage(MessageFactory.createResponse(msg,404,SipResponses.reasonOf(404),null));
else printLog("message discarded",LogLevel.HIGH);
}
/** When a new response message is received. */
public void processResponse(Message resp)
{ printLog("inside processResponse(msg)",LogLevel.MEDIUM);
// no actions..
printLog("message discarded",LogLevel.HIGH);
}
// *********************** protected methods ***********************
/** Gets the request's targets as Vector of String.
* @return It returns a Vector of String representing the target URLs. */
protected Vector getTargets(Message msg)
{ printLog("inside getTargets(msg)",LogLevel.LOW);
Vector targets=new Vector();
if (location_service==null)
{ printLog("Location service is not active",LogLevel.HIGH);
return targets;
}
SipURL request_uri=msg.getRequestLine().getAddress();
String username=request_uri.getUserName();
if (username==null)
{ printLog("no username found",LogLevel.HIGH);
return targets;
}
String user=username+"@"+request_uri.getHost();
printLog("user: "+user,LogLevel.MEDIUM);
if (!location_service.hasUser(user))
{ printLog("user "+user+" not found",LogLevel.HIGH);
return targets;
}
SipURL to_url=msg.getToHeader().getNameAddress().getAddress();
Enumeration e=location_service.getUserContactURLs(user);
printLog("message targets: ",LogLevel.LOW);
for (int i=0; e.hasMoreElements(); i++)
{ // if exipred, remove the contact url
String url=(String)e.nextElement();
if (location_service.isUserContactExpired(user,url))
{ location_service.removeUserContact(user,url);
printLog("target"+i+" expired: contact url removed",LogLevel.LOW);
}
// otherwise add the url to the target list
else
{ targets.addElement(url);
printLog("target"+i+"="+targets.elementAt(i),LogLevel.LOW);
}
}
return targets;
}
/** Updates the registration of a local user.
* @return it returns the response message for the registration. */
protected Message updateRegistration(Message msg)
{ ToHeader th=msg.getToHeader();
if (th==null)
{ printLog("ToHeader missed: message discarded",LogLevel.HIGH);
int result=400;
return MessageFactory.createResponse(msg,result,SipResponses.reasonOf(result),null);
}
SipURL dest_uri=th.getNameAddress().getAddress();
String user=dest_uri.getUserName()+"@"+dest_uri.getHost();
int exp_secs=server_profile.expires;
// set the expire value
ExpiresHeader eh=msg.getExpiresHeader();
if (eh!=null)
{ exp_secs=eh.getDeltaSeconds();
}
// limit the expire value
if (exp_secs<0) exp_secs=0;
else
if (exp_secs>server_profile.expires) exp_secs=server_profile.expires;
// known user?
if (!location_service.hasUser(user))
{ if (server_profile.register_new_users)
{ location_service.addUser(user);
printLog("new user '"+user+"' added.",LogLevel.HIGH);
}
else
{ printLog("user '"+user+"' unknown: message discarded.",LogLevel.HIGH);
int result=404;
return MessageFactory.createResponse(msg,result,SipResponses.reasonOf(result),null);
}
}
// Get the "device" parameter. Set device=null if not present or not supported
//String device=null;
// if (msg.hasApplicationHeader()) app=msg.getApplicationHeader().getApplication();
SipURL to_url=msg.getToHeader().getNameAddress().getAddress();
//if (to_url.hasParameter("device")) device=to_url.getParameter("device");
if (!msg.hasContactHeader())
{ //printLog("ContactHeader missed: message discarded",LogLevel.HIGH);
//int result=484;
//return MessageFactory.createResponse(msg,result,SipResponses.reasonOf(result),null,null);
printLog("no contact found: fetching bindings..",LogLevel.MEDIUM);
int result=200;
Message resp=MessageFactory.createResponse(msg,result,SipResponses.reasonOf(result),null);
// add current contacts
Vector v=new Vector();
for (Enumeration e=location_service.getUserContactURLs(user); e.hasMoreElements(); )
{ String url=(String)e.nextElement();
int expires=(int)(location_service.getUserContactExpirationDate(user,url).getTime()-System.currentTimeMillis())/1000;
if (expires>0)
{ // not expired
ContactHeader ch=new ContactHeader(location_service.getUserContactNameAddress(user,url));
ch.setExpires(expires);
v.addElement(ch);
}
}
if (v.size()>0) resp.setContacts(new MultipleHeader(v));
return resp;
}
// else
Vector contacts=msg.getContacts().getHeaders();
int result=200;
Message resp=MessageFactory.createResponse(msg,result,SipResponses.reasonOf(result),null);
ContactHeader contact_0=new ContactHeader((Header)contacts.elementAt(0));
if (contact_0.isStar())
{ printLog("DEBUG: ContactHeader is star",LogLevel.LOW);
Vector resp_contacts=new Vector();
for (Enumeration e=location_service.getUserContactURLs(user); e.hasMoreElements();)
{ String url=(String)(e.nextElement());
NameAddress name_address=location_service.getUserContactNameAddress(user,url);
// update db
location_service.removeUserContact(user,url);
printLog("contact removed: "+url,LogLevel.LOW);
if (exp_secs>0)
{ Date exp_date=new Date(System.currentTimeMillis()+((long)exp_secs)*1000);
location_service.addUserContact(user,name_address,exp_date);
//DateFormat df=new SimpleDateFormat("EEE, dd MMM yyyy hh:mm:ss 'GMT'",Locale.ITALIAN);
//printLog("contact added: "+url+"; expire: "+df.format(location_service.getUserContactExpire(user,url)),LogLevel.LOW);
printLog("contact added: "+url+"; expire: "+DateFormat.formatEEEddMMM(location_service.getUserContactExpirationDate(user,url)),LogLevel.LOW);
}
ContactHeader contact_i=new ContactHeader(name_address.getAddress());
contact_i.setExpires(exp_secs);
resp_contacts.addElement(contact_i);
}
if (resp_contacts.size()>0) resp.setContacts(new MultipleHeader(resp_contacts));
}
else
{ Vector resp_contacts=new Vector();
for (int i=0; i<contacts.size(); i++)
{ ContactHeader contact_i=new ContactHeader((Header)contacts.elementAt(i));
NameAddress name_address=contact_i.getNameAddress();
String url=name_address.getAddress().toString();
int exp_secs_i=exp_secs;
if (contact_i.hasExpires())
{ exp_secs_i=contact_i.getExpires();
}
// limit the expire value
if (exp_secs_i<0) exp_secs_i=0;
else
if (exp_secs_i>server_profile.expires) exp_secs_i=server_profile.expires;
// update db
location_service.removeUserContact(user,url);
if (exp_secs_i>0)
{ Date exp_date=new Date(System.currentTimeMillis()+((long)exp_secs)*1000);
location_service.addUserContact(user,name_address,exp_date);
printLog("registration of user "+user+" updated",LogLevel.HIGH);
}
contact_i.setExpires(exp_secs_i);
resp_contacts.addElement(contact_i);
}
if (resp_contacts.size()>0) resp.setContacts(new MultipleHeader(resp_contacts));
}
location_service.sync();
return resp;
}
// ****************************** Logs *****************************
/** Adds a new string to the default Log. */
private void printLog(String str, int level)
{ if (log!=null) log.println("Registrar: "+str,level+SipStack.LOG_LEVEL_UA);
}
/** Adds the Exception message to the default Log */
private final void printException(Exception e, int level)
{ if (log!=null) log.printException(e,level+SipStack.LOG_LEVEL_UA);
}
// ****************************** MAIN *****************************
/** The main method. */
public static void main(String[] args)
{
String file=null;
for (int i=0; i<args.length; i++)
{ if (args[i].equals("-f") && args.length>(i+1))
{ file=args[++i];
continue;
}
if (args[i].equals("-h"))
{ System.out.println("usage:\n java Registrar [-f <config_file>] \n");
System.exit(0);
}
}
SipStack.init(file);
SipProvider sip_provider=new SipProvider(file);
ServerProfile server_profile=new ServerProfile(file);
new Registrar(sip_provider,server_profile);
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -