/* * JBoss, Home of Professional Open Source * Copyright 2011, Red Hat, Inc. and/or its affiliates, and individual * contributors as indicated by the @authors tag. All rights reserved. * See the copyright.txt in the distribution for a full listing * of individual contributors. * * This copyrighted material is made available to anyone wishing to use, * modify, copy, or redistribute it subject to the terms and conditions * of the GNU General Public License, v. 2.0. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * General Public License for more details. * * You should have received a copy of the GNU General Public License, * v. 2.0 along with this distribution; if not, write to the Free * Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, * MA 02110-1301, USA. */ package org.mobicents.diameter.stack.functional.sh.base; import org.jdiameter.api.Avp; import org.jdiameter.api.AvpSet; import org.jdiameter.api.IllegalDiameterStateException; import org.jdiameter.api.InternalException; import org.jdiameter.api.OverloadException; import org.jdiameter.api.RouteException; import org.jdiameter.api.app.AppAnswerEvent; import org.jdiameter.api.app.AppRequestEvent; import org.jdiameter.api.app.AppSession; import org.jdiameter.api.sh.ClientShSession; import org.jdiameter.api.sh.events.ProfileUpdateAnswer; import org.jdiameter.api.sh.events.ProfileUpdateRequest; import org.jdiameter.api.sh.events.PushNotificationRequest; import org.jdiameter.api.sh.events.SubscribeNotificationsAnswer; import org.jdiameter.api.sh.events.SubscribeNotificationsRequest; import org.jdiameter.api.sh.events.UserDataAnswer; import org.jdiameter.api.sh.events.UserDataRequest; import org.jdiameter.common.impl.app.sh.SubscribeNotificationsRequestImpl; import org.mobicents.diameter.stack.functional.Utils; import org.mobicents.diameter.stack.functional.sh.AbstractClient; /** * Base implementation of Client * * @author <a href="mailto:brainslog@gmail.com"> Alexandre Mendonca </a> * @author <a href="mailto:baranowb@gmail.com"> Bartosz Baranowski </a> */ public class ClientSNR extends AbstractClient { protected boolean sentSubscribeNotifications; protected boolean sentProfileUpdate; protected boolean sentUserData; protected boolean sentPushNotification; protected boolean receiveSubscribeNotifications; protected boolean receiveProfileUpdate; protected boolean receiveUserData; protected boolean receivePushNotification; /** * */ public ClientSNR() { } public void sendSubscribeNotifications() throws Exception { SubscribeNotificationsRequest request = new SubscribeNotificationsRequestImpl(super.clientShSession.getSessions().get(0) .createRequest(SubscribeNotificationsRequest.code, getApplicationId(), getServerRealmName())); AvpSet avpSet = request.getMessage().getAvps(); // < Subscribe-Notifications-Request > ::= < Diameter Header: 308, REQ, PXY, 16777217 > // < Session-Id > // { Vendor-Specific-Application-Id } AvpSet vendorSpecificApplicationId = avpSet.addGroupedAvp(Avp.VENDOR_SPECIFIC_APPLICATION_ID, 0, false, false); // 1* [ Vendor-Id ] vendorSpecificApplicationId.addAvp(Avp.VENDOR_ID, getApplicationId().getVendorId(), true); // 0*1{ Auth-Application-Id } vendorSpecificApplicationId.addAvp(Avp.AUTH_APPLICATION_ID, getApplicationId().getAuthAppId(), true); // 0*1{ Acct-Application-Id } // { Auth-Session-State } avpSet.addAvp(Avp.AUTH_SESSION_STATE, 1); // { Origin-Host } avpSet.removeAvp(Avp.ORIGIN_HOST); avpSet.addAvp(Avp.ORIGIN_HOST, getClientURI(), true); // { Origin-Realm } // [ Destination-Host ] // { Destination-Realm } // *[ Supported-Features ] // { User-Identity } // [ Wildcarded-PSI ] // [ Wildcarded-IMPU ] // *[ Service-Indication ] // [ Send-Data-Indication ] // [ Server-Name ] // { Subs-Req-Type } // *{ Data-Reference } avpSet.addAvp(Avp.DATA_REFERENCE, 0); // *[ Identity-Set ] // [ Expiry-Time ] // *[ DSAI-Tag ] // *[ AVP ] // *[ Proxy-Info ] // *[ Route-Record ] Utils.printMessage(log, super.stack.getDictionary(), request.getMessage(), true); super.clientShSession.sendSubscribeNotificationsRequest(request); this.sentSubscribeNotifications = true; } // ------------ event handlers; @Override public void doSubscribeNotificationsAnswerEvent(ClientShSession session, SubscribeNotificationsRequest request, SubscribeNotificationsAnswer answer) throws InternalException, IllegalDiameterStateException, RouteException, OverloadException { receiveSubscribeNotifications = true; } @Override public void doProfileUpdateAnswerEvent(ClientShSession session, ProfileUpdateRequest request, ProfileUpdateAnswer answer) throws InternalException, IllegalDiameterStateException, RouteException, OverloadException { receiveProfileUpdate = true; fail("Received \"PUA\" event, request[" + request + "], answer[" + answer + "], on session[" + session + "]", null); } @Override public void doPushNotificationRequestEvent(ClientShSession session, PushNotificationRequest request) throws InternalException, IllegalDiameterStateException, RouteException, OverloadException { receivePushNotification = true; fail("Received \"PNR\" event, request[" + request + "], on session[" + session + "]", null); } @Override public void doUserDataAnswerEvent(ClientShSession session, UserDataRequest request, UserDataAnswer answer) throws InternalException, IllegalDiameterStateException, RouteException, OverloadException { receiveUserData = true; fail("Received \"UDR\" event, request[" + request + "], answer[" + answer + "], on session[" + session + "]", null); } @Override public void doOtherEvent(AppSession session, AppRequestEvent request, AppAnswerEvent answer) throws InternalException, IllegalDiameterStateException, RouteException, OverloadException { fail("Received \"Other\" event, request[" + request + "], answer[" + answer + "], on session[" + session + "]", null); } @Override protected String getClientURI() { return clientURI; } public boolean isSentSubscribeNotifications() { return sentSubscribeNotifications; } public boolean isSentProfileUpdate() { return sentProfileUpdate; } public boolean isSentUserData() { return sentUserData; } public boolean isSentPushNotification() { return sentPushNotification; } public boolean isReceiveSubscribeNotifications() { return receiveSubscribeNotifications; } public boolean isReceiveProfileUpdate() { return receiveProfileUpdate; } public boolean isReceiveUserData() { return receiveUserData; } public boolean isReceivePushNotification() { return receivePushNotification; } }