OSDN Git Service

Chromium Cookie処理クラス実装
[coroid/inqubus.git] / frontend / src / saccubus / net / Cookie.java
index cf03ad0..fd142af 100644 (file)
@@ -17,41 +17,31 @@ public abstract class Cookie {
 
     public enum BrowserType {
 
-        NONE, MSIE, IE6, FIREFOX, CHROME,
-        OPERA, CHROMIUM, OTHER
+        MSIE, FIREFOX, CHROME, CHROMIUM, OPERA, OTHER
     }
 
-    public static Cookie create(BrowserType type) {
+    public static Cookie create(BrowserType type, String dir) {
         switch (type) {
-            case CHROME:
-                return new CookieWinCrome();
-            case FIREFOX:
-                return new CookieWinFirefox4();
             case MSIE:
                 return new CookieWinMsIe();
+            case FIREFOX:
+                return new CookieWinFirefox4();
+            case CHROME:
+                return new CookieWinCrome();
+            case CHROMIUM:
+                return new CookieWinChromium();
+            case OPERA:
+                return new CookieWinOpera();
             default:
-                throw new UnsupportedOperationException();
+                final File f = new File(dir);
+                return new CookieDefault(f);
         }
     }
 
     public abstract String getUserSessionString() throws IOException;
 
     /**
-     * 文字列から user_session_ で始まる文字列を切り出して返す。数字とアンダーバー以外の文字で切れる。
-     * @param str 切り出す対象文字列
-     * @return user_session 文字列。見つからなければnull。
-     */
-    private String cutUserSession(File cookieFile, String charsetName) throws IOException {
-        final String str = FileUtils.readFileToString(cookieFile, charsetName);
-        final Matcher mather = USER_SESSION_PATTERN.matcher(str);
-        if (mather.lookingAt()) {
-            return mather.group(1);
-        }
-        return null;
-    }
-
-    /**
-     * cookieDirs ディレクトリからクッキーを見つけて user_session を返す
+     * クッキーファイルを見つけて user_session を返す.
      * @param cookieFileOrDirs cookieが保存されたディレクトリの候補, あるいはcookieファイルの候補.
      * @return ユーザセッション文字列. 無ければnull.
      */
@@ -77,4 +67,22 @@ public abstract class Cookie {
 
         return null;
     }
+
+    /**
+     * 文字列から user_session_ で始まる文字列を切り出して返す。数字とアンダーバー以外の文字で切れる。
+     * @param cookieStr 切り出す対象文字列
+     * @return user_session 文字列。見つからなければnull。
+     */
+    protected final String getUserSession(final String cookieStr) {
+        final Matcher mather = USER_SESSION_PATTERN.matcher(cookieStr);
+        if (mather.lookingAt()) {
+            return mather.group(1);
+        }
+        return null;
+    }
+
+    private String cutUserSession(File cookieFile, String charsetName) throws IOException {
+        final String str = FileUtils.readFileToString(cookieFile, charsetName);
+        return getUserSession(str);
+    }
 }