protected void handleValidationResponseSMS(String smsText) { try { Pattern p = Pattern.compile(PHASE2_PATTERN); Matcher m = p.matcher(smsText); if (!m.matches()) { // some other SMS, not for us logger.info("ignoring SMS (not for us), body = " + smsText); return; } String validationCode2 = m.group(1); String validatedNumber = m.group(2); LumicallDataSource ds = new LumicallDataSource(this); ds.open(); List<SIP5060ProvisioningRequest> reqs = ds.getSIP5060ProvisioningRequests(); if (reqs.size() < 1) { logger.severe("no SIP5060ProvisioningRequest"); throw new RegistrationFailedException("no SIP5060ProvisioningRequest"); } SIP5060ProvisioningRequest req = reqs.get(0); req.setPhoneNumber(validatedNumber); req.setValidationCode2(validationCode2); ds.persistSIP5060ProvisioningRequest(req); logger.info( "validation reply SMS, code2 = " + validationCode2 + ", my number = " + validatedNumber); AppProperties props; try { props = new AppProperties(this); } catch (IOException e) { throw new RegistrationFailedException( e.getClass().getCanonicalName() + ": " + e.getMessage()); } notification = new Notification( R.drawable.icon22, getText(R.string.enrolment_submitting_code), new Date().getTime()); Intent notificationIntent = new Intent(this, RegisterAccount.class); PendingIntent contentIntent = PendingIntent.getActivity(this, 0, notificationIntent, 0); notification.setLatestEventInfo( this, getText(R.string.enrolment_request_title), getText(R.string.enrolment_submitting_code), contentIntent); nm.notify(10, notification); String s = getValidationBodyXml(validatedNumber, validationCode2); String responseText = RegistrationUtil.submitMessage( props, "validate", getValidationEncryptedXml(this, s), null); if (!responseText.startsWith("DONE")) { logger.severe( "Bad response from validation server when sending phase2 code, text = " + responseText); return; } notification = new Notification( R.drawable.icon22, getText(R.string.enrolment_submitted_code), new Date().getTime()); notificationIntent = new Intent(this, ActivateAccount.class); contentIntent = PendingIntent.getActivity(this, 0, notificationIntent, 0); notification.setLatestEventInfo( this, getText(R.string.enrolment_request_title), getText(R.string.enrolment_submitted_code), contentIntent); nm.notify(10, notification); // This only gets updated if no exception occurred validationDone(this, req); ds.close(); } catch (RegistrationFailedException e) { // TODO: display error to user Log.e(TAG, e.toString()); notification = new Notification( R.drawable.icon22, getText(R.string.enrolment_submission_failed), new Date().getTime()); Intent notificationIntent = new Intent(this, RegisterAccount.class); PendingIntent contentIntent = PendingIntent.getActivity(this, 0, notificationIntent, 0); notification.setLatestEventInfo( this, getText(R.string.enrolment_request_title), getText(R.string.enrolment_submission_failed), contentIntent); nm.notify(10, notification); } }
protected void doEnrolmentBySMS(Context context) { try { AppProperties props; try { props = new AppProperties(context); } catch (IOException e) { throw new RegistrationFailedException( e.getClass().getCanonicalName() + ": " + e.getMessage()); } notification = new Notification( R.drawable.icon22, getText(R.string.enrolment_request_detail), new Date().getTime()); Intent notificationIntent = new Intent(this, RegisterAccount.class); PendingIntent contentIntent = PendingIntent.getActivity(this, 0, notificationIntent, 0); notification.setLatestEventInfo( this, getText(R.string.enrolment_request_title), getText(R.string.enrolment_request_detail), contentIntent); nm.notify(10, notification); LumicallDataSource ds = new LumicallDataSource(this); ds.open(); List<SIP5060ProvisioningRequest> reqs = ds.getSIP5060ProvisioningRequests(); if (reqs.size() < 1) { logger.severe("no SIP5060ProvisioningRequest"); throw new RegistrationFailedException("no SIP5060ProvisioningRequest"); } SIP5060ProvisioningRequest req = reqs.get(0); String enrolmentMessage = getEnrolmentEncryptedXml(req); String numberToDial = RegistrationUtil.submitMessage(props, "enrol", enrolmentMessage, req); ds.persistSIP5060ProvisioningRequest(req); notification = new Notification( R.drawable.icon22, getText(R.string.enrolment_requested_detail), new Date().getTime()); notificationIntent = new Intent(this, ActivateAccount.class); contentIntent = PendingIntent.getActivity(this, 0, notificationIntent, 0); notification.setLatestEventInfo( this, getText(R.string.enrolment_request_title), getText(R.string.enrolment_requested_detail), contentIntent); nm.notify(10, notification); logger.info("HTTP response: " + numberToDial); if (numberToDial.charAt(0) == '+') { sendValidationSMS(context, numberToDial, req.getValidationCode1(), DEFAULT_RETRY_COUNT); } ds.close(); } catch (RegistrationFailedException e) { // TODO Auto-generated catch block e.printStackTrace(); notification = new Notification( R.drawable.icon22, getText(R.string.enrolment_request_failed), new Date().getTime()); Intent notificationIntent = new Intent(this, RegisterAccount.class); PendingIntent contentIntent = PendingIntent.getActivity(this, 0, notificationIntent, 0); notification.setLatestEventInfo( this, getText(R.string.enrolment_request_title), getText(R.string.enrolment_request_failed), contentIntent); nm.notify(10, notification); } }