2009-05-28 16:08:46 -04:00
|
|
|
/*
|
|
|
|
Yaaic - Yet Another Android IRC Client
|
|
|
|
|
2010-03-13 10:52:20 -05:00
|
|
|
Copyright 2009-2010 Sebastian Kaspari
|
2009-05-28 16:08:46 -04:00
|
|
|
|
|
|
|
This file is part of Yaaic.
|
|
|
|
|
|
|
|
Yaaic is free software: you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
Yaaic 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
|
|
|
|
along with Yaaic. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
2009-12-17 15:27:57 -05:00
|
|
|
package org.yaaic.view;
|
2009-05-15 11:32:49 -04:00
|
|
|
|
2010-03-14 08:34:25 -04:00
|
|
|
import java.util.regex.Pattern;
|
|
|
|
|
2009-05-15 11:32:49 -04:00
|
|
|
import android.app.Activity;
|
|
|
|
import android.os.Bundle;
|
2009-12-17 15:27:57 -05:00
|
|
|
import android.util.Log;
|
2009-05-15 11:32:49 -04:00
|
|
|
import android.view.View;
|
|
|
|
import android.view.View.OnClickListener;
|
|
|
|
import android.widget.Button;
|
|
|
|
import android.widget.CheckBox;
|
|
|
|
import android.widget.EditText;
|
2010-03-14 08:34:25 -04:00
|
|
|
import android.widget.Toast;
|
2009-05-15 11:32:49 -04:00
|
|
|
|
2009-12-17 15:27:57 -05:00
|
|
|
import org.yaaic.R;
|
|
|
|
import org.yaaic.Yaaic;
|
|
|
|
import org.yaaic.db.Database;
|
2010-03-14 08:34:25 -04:00
|
|
|
import org.yaaic.exception.ValidationException;
|
2010-03-13 14:53:37 -05:00
|
|
|
import org.yaaic.model.Identity;
|
2009-12-17 15:27:57 -05:00
|
|
|
import org.yaaic.model.Server;
|
|
|
|
import org.yaaic.model.Status;
|
|
|
|
|
2009-05-28 15:10:18 -04:00
|
|
|
/**
|
2009-12-17 15:27:57 -05:00
|
|
|
* Add a new server to the list
|
2009-05-28 15:10:18 -04:00
|
|
|
*
|
2009-12-17 15:27:57 -05:00
|
|
|
* @author Sebastian Kaspari <sebastian@yaaic.org>
|
2009-05-28 15:10:18 -04:00
|
|
|
*/
|
2009-12-17 15:27:57 -05:00
|
|
|
public class AddServerActivity extends Activity implements OnClickListener
|
2009-05-15 11:32:49 -04:00
|
|
|
{
|
2009-12-17 15:27:57 -05:00
|
|
|
public static final String TAG = "Yaaic/AddServerActivity";
|
|
|
|
|
2010-03-13 13:56:32 -05:00
|
|
|
/**
|
|
|
|
* On create
|
|
|
|
*/
|
2009-12-17 15:27:57 -05:00
|
|
|
@Override
|
|
|
|
public void onCreate(Bundle savedInstanceState)
|
|
|
|
{
|
|
|
|
super.onCreate(savedInstanceState);
|
|
|
|
|
|
|
|
setContentView(R.layout.serveradd);
|
|
|
|
|
|
|
|
((Button) findViewById(R.id.add)).setOnClickListener(this);
|
|
|
|
((Button) findViewById(R.id.cancel)).setOnClickListener(this);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* On click add server or cancel activity
|
|
|
|
*/
|
|
|
|
public void onClick(View v)
|
|
|
|
{
|
|
|
|
switch (v.getId()) {
|
|
|
|
case R.id.add:
|
2010-03-14 08:34:25 -04:00
|
|
|
try {
|
|
|
|
validateServer();
|
|
|
|
validateIdentity();
|
|
|
|
addServer();
|
|
|
|
setResult(RESULT_OK);
|
|
|
|
finish();
|
|
|
|
} catch(ValidationException e) {
|
|
|
|
Toast.makeText(this, e.getMessage(), Toast.LENGTH_SHORT).show();
|
|
|
|
}
|
2009-12-17 15:27:57 -05:00
|
|
|
break;
|
|
|
|
case R.id.cancel:
|
|
|
|
setResult(RESULT_CANCELED);
|
|
|
|
finish();
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2010-03-14 08:34:25 -04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Add server to database
|
|
|
|
*/
|
|
|
|
private void addServer()
|
|
|
|
{
|
|
|
|
// server
|
|
|
|
String title = ((EditText) findViewById(R.id.title)).getText().toString();
|
|
|
|
String host = ((EditText) findViewById(R.id.host)).getText().toString();
|
|
|
|
int port = Integer.parseInt(((EditText) findViewById(R.id.port)).getText().toString());
|
|
|
|
String password = ((EditText) findViewById(R.id.password)).getText().toString();
|
|
|
|
boolean autoConnect = ((CheckBox) findViewById(R.id.autoconnect)).isChecked();
|
|
|
|
boolean useSSL = ((CheckBox) findViewById(R.id.useSSL)).isChecked();
|
|
|
|
|
|
|
|
// identity
|
|
|
|
String nickname = ((EditText) findViewById(R.id.nickname)).getText().toString();
|
|
|
|
String ident = ((EditText) findViewById(R.id.ident)).getText().toString();
|
|
|
|
String realname = ((EditText) findViewById(R.id.realname)).getText().toString();
|
|
|
|
|
|
|
|
Database db = new Database(this);
|
|
|
|
long identityId = db.addIdentity(nickname, ident, realname);
|
|
|
|
|
|
|
|
Log.d(TAG, "New Identity with Id " + identityId + " (" + nickname + ", " + ident + ", " + realname + ")");
|
|
|
|
|
|
|
|
long serverId = db.addServer(title, host, port, password, autoConnect, useSSL, identityId);
|
|
|
|
db.close();
|
|
|
|
|
|
|
|
Server server = new Server();
|
|
|
|
server.setId((int) serverId);
|
|
|
|
server.setHost(host);
|
|
|
|
server.setPort(port);
|
|
|
|
server.setTitle(title);
|
|
|
|
server.setStatus(Status.DISCONNECTED);
|
|
|
|
|
|
|
|
Identity identity = new Identity();
|
|
|
|
identity.setNickname(nickname);
|
|
|
|
identity.setIdent(ident);
|
|
|
|
identity.setRealName(realname);
|
|
|
|
server.setIdentity(identity);
|
|
|
|
|
|
|
|
Yaaic.getInstance().addServer(server);
|
|
|
|
|
|
|
|
Log.d(TAG, "Saved server " + title);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Validate the input for a server
|
|
|
|
*
|
|
|
|
* @throws ValidationException
|
|
|
|
*/
|
|
|
|
private void validateServer() throws ValidationException
|
|
|
|
{
|
|
|
|
String title = ((EditText) findViewById(R.id.title)).getText().toString();
|
|
|
|
String host = ((EditText) findViewById(R.id.host)).getText().toString();
|
|
|
|
String port = ((EditText) findViewById(R.id.port)).getText().toString();
|
|
|
|
|
|
|
|
if (title.trim().equals("")) {
|
|
|
|
throw new ValidationException("Title cannot be blank");
|
|
|
|
}
|
|
|
|
|
|
|
|
if (host.trim().equals("")) {
|
|
|
|
// XXX: We should use some better host validation
|
|
|
|
throw new ValidationException("Host cannot be blank");
|
|
|
|
}
|
|
|
|
|
|
|
|
try {
|
|
|
|
Integer.parseInt(port);
|
|
|
|
} catch (NumberFormatException e) {
|
|
|
|
throw new ValidationException("Enter a numeric port");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Validate the input for a identity
|
|
|
|
*
|
|
|
|
* @throws ValidationException
|
|
|
|
*/
|
|
|
|
private void validateIdentity() throws ValidationException
|
|
|
|
{
|
|
|
|
String nickname = ((EditText) findViewById(R.id.nickname)).getText().toString();
|
|
|
|
String ident = ((EditText) findViewById(R.id.ident)).getText().toString();
|
|
|
|
//String realname = ((EditText) findViewById(R.id.realname)).getText().toString();
|
|
|
|
|
|
|
|
if (nickname.trim().equals("")) {
|
|
|
|
throw new ValidationException("Nickname cannot be blank");
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ident.trim().equals("")) {
|
|
|
|
throw new ValidationException("Ident cannot be blank");
|
|
|
|
}
|
|
|
|
|
|
|
|
// RFC 1459: <nick> ::= <letter> { <letter> | <number> | <special> }
|
|
|
|
// <special> ::= '-' | '[' | ']' | '\' | '`' | '^' | '{' | '}'
|
|
|
|
// Chars that are not in RFC 1459 but are supported too:
|
|
|
|
// | and _
|
|
|
|
Pattern nickPattern = Pattern.compile("^[a-zA-Z][a-zA-Z0-9^-`\\[\\]{}|_\\\\]*$");
|
|
|
|
if (!nickPattern.matcher(nickname).matches()) {
|
|
|
|
throw new ValidationException("Invalid nickname");
|
|
|
|
}
|
|
|
|
|
|
|
|
// We currently only allow chars as ident
|
|
|
|
Pattern identPattern = Pattern.compile("^[a-zA-Z]+$");
|
|
|
|
if (!identPattern.matcher(ident).matches()) {
|
|
|
|
throw new ValidationException("Invalid ident");
|
|
|
|
}
|
|
|
|
}
|
2009-12-17 15:27:57 -05:00
|
|
|
}
|