1999-02-25 19:39:15 +00:00
|
|
|
/* -*- Mode: java; indent-tabs-mode: nil; c-basic-offset: 2 -*-
|
1998-09-09 00:52:38 +00:00
|
|
|
*
|
|
|
|
* The contents of this file are subject to the Mozilla Public License
|
|
|
|
* Version 1.0 (the "License"); you may not use this file except in
|
|
|
|
* compliance with the License. You may obtain a copy of the License at
|
|
|
|
* http://www.mozilla.org/MPL/
|
|
|
|
*
|
|
|
|
* Software distributed under the License is distributed on an "AS IS"
|
|
|
|
* basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See
|
|
|
|
* the License for the specific language governing rights and limitations
|
|
|
|
* under the License.
|
|
|
|
*
|
|
|
|
* The Original Code is the Grendel mail/news client.
|
|
|
|
*
|
|
|
|
* The Initial Developer of the Original Code is Netscape Communications
|
|
|
|
* Corporation. Portions created by Netscape are Copyright (C) 1997
|
|
|
|
* Netscape Communications Corporation. All Rights Reserved.
|
|
|
|
*
|
|
|
|
* Created: Will Scullin <scullin@netscape.com>, 19 Nov 1997.
|
1999-03-07 19:58:40 +00:00
|
|
|
*
|
|
|
|
* Contributors: Jeff Galyan <talisman@anamorphic.com>
|
|
|
|
* Edwin Woudt <edwin@woudt.nl>
|
1998-09-09 00:52:38 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
package grendel.ui;
|
|
|
|
|
|
|
|
import java.util.ResourceBundle;
|
|
|
|
import java.util.StringTokenizer;
|
|
|
|
import java.util.Vector;
|
|
|
|
|
|
|
|
import javax.mail.AuthenticationFailedException;
|
|
|
|
import javax.mail.MessagingException;
|
|
|
|
import javax.mail.Session;
|
|
|
|
import javax.mail.Store;
|
|
|
|
import javax.mail.URLName;
|
|
|
|
|
1999-01-09 03:55:32 +00:00
|
|
|
import javax.swing.JOptionPane;
|
|
|
|
import javax.swing.event.ChangeEvent;
|
|
|
|
import javax.swing.event.ChangeListener;
|
|
|
|
import javax.swing.event.EventListenerList;
|
1998-09-09 00:52:38 +00:00
|
|
|
|
|
|
|
import calypso.util.Preferences;
|
|
|
|
import calypso.util.PreferencesFactory;
|
|
|
|
|
|
|
|
import grendel.view.ViewedStore;
|
|
|
|
import grendel.view.ViewedStoreBase;
|
|
|
|
|
|
|
|
import java.lang.ClassNotFoundException;
|
|
|
|
import java.lang.NoSuchMethodException;
|
|
|
|
import java.lang.IllegalAccessException;
|
|
|
|
import java.lang.IllegalArgumentException;
|
|
|
|
import java.lang.InstantiationException;
|
|
|
|
import java.lang.reflect.Constructor;
|
|
|
|
import java.lang.reflect.InvocationTargetException;
|
|
|
|
|
|
|
|
|
1999-02-07 03:37:37 +00:00
|
|
|
public class StoreFactory {
|
1998-09-09 00:52:38 +00:00
|
|
|
static StoreFactory fInstance = null;
|
|
|
|
|
|
|
|
Session fSession = null;
|
|
|
|
ViewedStore[] fStores = null;
|
|
|
|
DialogAuthenticator fAuthenticator = null;
|
|
|
|
EventListenerList fListeners = new EventListenerList();
|
|
|
|
|
|
|
|
private StoreFactory() {
|
|
|
|
Preferences prefs = PreferencesFactory.Get();
|
|
|
|
fAuthenticator = new DialogAuthenticator();
|
1999-02-19 22:40:12 +00:00
|
|
|
fSession = Session.getDefaultInstance(prefs.getAsProperties(),
|
|
|
|
fAuthenticator);
|
1998-09-09 00:52:38 +00:00
|
|
|
fSession.setDebug(true);
|
|
|
|
}
|
|
|
|
|
1999-03-04 22:31:34 +00:00
|
|
|
public synchronized static StoreFactory Instance() {
|
1998-09-09 00:52:38 +00:00
|
|
|
if (fInstance == null) {
|
|
|
|
fInstance = new StoreFactory();
|
|
|
|
}
|
|
|
|
return fInstance;
|
|
|
|
}
|
|
|
|
|
|
|
|
public Session getSession() {
|
|
|
|
return fSession;
|
|
|
|
}
|
|
|
|
|
1999-03-04 22:31:34 +00:00
|
|
|
public synchronized ViewedStore[] getStores() {
|
1998-09-09 00:52:38 +00:00
|
|
|
if (fStores == null) {
|
|
|
|
updateStores();
|
|
|
|
}
|
|
|
|
|
|
|
|
return fStores;
|
|
|
|
}
|
|
|
|
|
1999-03-04 22:31:34 +00:00
|
|
|
synchronized ViewedStore createStore(String storename) {
|
1998-09-09 00:52:38 +00:00
|
|
|
ResourceBundle labels = ResourceBundle.getBundle("grendel.ui.Labels");
|
|
|
|
URLName urlName = null;
|
|
|
|
|
|
|
|
String proto;
|
|
|
|
|
|
|
|
if (storename.indexOf(":") != -1) {
|
|
|
|
urlName = new URLName(storename);
|
|
|
|
} else {
|
|
|
|
urlName = new URLName(storename, null, -1, null, null, null);
|
|
|
|
}
|
|
|
|
|
|
|
|
proto = urlName.getProtocol();
|
|
|
|
|
1999-03-05 15:16:09 +00:00
|
|
|
// ### Very wrong temporary hack -- special case "berkeley" and "pop3",
|
|
|
|
// since they doesn't play with the proper registration mechanism right
|
|
|
|
// now.
|
1998-09-09 00:52:38 +00:00
|
|
|
Store store = null;
|
|
|
|
ViewedStore viewedStore = null;
|
|
|
|
|
|
|
|
try {
|
1999-03-05 15:16:09 +00:00
|
|
|
Class c = null;
|
|
|
|
if (proto.equalsIgnoreCase("berkeley")) {
|
|
|
|
c = Class.forName("grendel.storage.BerkeleyStore");
|
|
|
|
// Two pop3 providers
|
|
|
|
} else if (proto.equalsIgnoreCase("gpop3")) {
|
|
|
|
c = Class.forName("grendel.storage.PopStore");
|
|
|
|
} else if (proto.equalsIgnoreCase("spop3")) {
|
|
|
|
c = Class.forName("com.sun.mail.pop3.POP3Store;");
|
|
|
|
// Two news providers
|
|
|
|
} else if (proto.equalsIgnoreCase("gnews")) {
|
|
|
|
c = Class.forName("grendel.storage.NewsStore");
|
|
|
|
} else if (proto.equalsIgnoreCase("dnews")) {
|
|
|
|
c = Class.forName("dog.mail.nntp.NNTPStore");
|
|
|
|
// Defaults
|
|
|
|
} else if (proto.equalsIgnoreCase("pop3")) {
|
|
|
|
c = Class.forName("com.sun.mail.pop3.POP3Store;");
|
|
|
|
} else if (proto.equalsIgnoreCase("news")) {
|
|
|
|
c = Class.forName("grendel.storage.NewsStore");
|
|
|
|
}
|
|
|
|
|
|
|
|
if (c != null) {
|
|
|
|
Object args[] = { fSession, urlName };
|
|
|
|
Class types[] = { args[0].getClass(), args[1].getClass() };
|
|
|
|
Constructor cc = c.getConstructor(types);
|
|
|
|
store = (Store) cc.newInstance(args);
|
|
|
|
}
|
|
|
|
} catch (ClassNotFoundException c) { // Class.forName
|
|
|
|
} catch (NoSuchMethodException c) { // Constructor.getConstructor
|
|
|
|
} catch (IllegalAccessException c) { // Constructor.newInstance
|
|
|
|
} catch (IllegalArgumentException c) { // Constructor.newInstance
|
|
|
|
} catch (InstantiationException c) { // Constructor.newInstance
|
|
|
|
} catch (InvocationTargetException c) { // Constructor.newInstance
|
|
|
|
}
|
|
|
|
|
|
|
|
if (store == null) {
|
|
|
|
try {
|
|
|
|
store = fSession.getStore(proto);
|
|
|
|
} catch (MessagingException e) {
|
|
|
|
System.out.println("Got exception " + e +
|
|
|
|
" while creating store of type" + proto);
|
|
|
|
e.printStackTrace();
|
|
|
|
}
|
1998-09-09 00:52:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
viewedStore = new ViewedStoreBase(store,
|
|
|
|
urlName.getProtocol(),
|
|
|
|
urlName.getHost(),
|
|
|
|
urlName.getPort(),
|
|
|
|
urlName.getUsername());
|
|
|
|
return viewedStore;
|
|
|
|
}
|
|
|
|
|
|
|
|
public ViewedStore getViewedStore(Store aStore) {
|
|
|
|
if (fStores == null) {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (int i = 0; i < fStores.length; i++) {
|
|
|
|
if (fStores[i].getStore().equals(aStore)) {
|
|
|
|
return fStores[i];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
boolean SafeEquals(Object a, Object b) {
|
|
|
|
if (a == b) {
|
|
|
|
return true;
|
|
|
|
} else if (a != null && b != null) {
|
|
|
|
return a.equals(b);
|
|
|
|
} else {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public ViewedStore findStore(String storename) {
|
|
|
|
URLName urlName = null;
|
|
|
|
|
|
|
|
if (storename.indexOf(":") != -1) {
|
|
|
|
urlName = new URLName(storename);
|
|
|
|
} else {
|
|
|
|
urlName = new URLName(storename, null, -1, null, null, null);
|
|
|
|
}
|
|
|
|
for (int i = 0; fStores != null && i < fStores.length; i++) {
|
|
|
|
if (urlName.getProtocol().equals(fStores[i].getProtocol())) {
|
|
|
|
if (SafeEquals(urlName.getHost(), fStores[i].getHost()) &&
|
|
|
|
SafeEquals(urlName.getUsername(), fStores[i].getUsername()) &&
|
|
|
|
//SafeEquals(urlName.getFile(), fStores[i].getFile()) &&
|
|
|
|
urlName.getPort() == fStores[i].getPort()) {
|
|
|
|
return fStores[i];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
1999-03-04 22:31:34 +00:00
|
|
|
synchronized void updateStores() {
|
1998-09-09 00:52:38 +00:00
|
|
|
if (fSession == null) {
|
|
|
|
getSession();
|
|
|
|
}
|
|
|
|
|
|
|
|
Preferences prefs = PreferencesFactory.Get();
|
|
|
|
Vector resVector = new Vector();
|
|
|
|
|
|
|
|
String defStore = "";
|
|
|
|
if (!prefs.getString("mail.directory","").equals("")) {
|
|
|
|
defStore = "berkeley";
|
|
|
|
}
|
|
|
|
|
|
|
|
String storelist = prefs.getString("mail.storelist", defStore);
|
|
|
|
StringTokenizer st = new StringTokenizer(storelist, " ,;");
|
|
|
|
|
|
|
|
while (st.hasMoreTokens()) {
|
|
|
|
String storename = st.nextToken().trim();
|
|
|
|
|
|
|
|
ViewedStore viewedStore = null;
|
|
|
|
|
|
|
|
viewedStore = findStore(storename);
|
|
|
|
if (viewedStore == null) {
|
|
|
|
viewedStore = createStore(storename);
|
|
|
|
System.out.println("created " + viewedStore);
|
|
|
|
} else {
|
|
|
|
System.out.println("recycled " + viewedStore);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (viewedStore != null) {
|
|
|
|
resVector.addElement(viewedStore);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
fStores = new ViewedStore[resVector.size()];
|
|
|
|
resVector.copyInto(fStores);
|
|
|
|
}
|
|
|
|
|
1999-03-04 22:31:34 +00:00
|
|
|
public synchronized void refreshStores() {
|
1998-09-09 00:52:38 +00:00
|
|
|
updateStores();
|
|
|
|
|
|
|
|
Object[] listeners = fListeners.getListenerList();
|
|
|
|
ChangeEvent event = null;
|
|
|
|
for (int i = 0; i < listeners.length - 1; i += 2) {
|
|
|
|
// Lazily create the event:
|
|
|
|
if (event == null)
|
|
|
|
event = new ChangeEvent(this);
|
|
|
|
((ChangeListener)listeners[i+1]).stateChanged(event);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public void addChangeListener(ChangeListener l) {
|
|
|
|
fListeners.add(ChangeListener.class, l);
|
|
|
|
}
|
|
|
|
|
|
|
|
public void removeChangeListener(ChangeListener l) {
|
|
|
|
fListeners.remove(ChangeListener.class, l);
|
|
|
|
}
|
|
|
|
}
|