abuse log improvements
[mir.git] / source / mircoders / entity / EntityContent.java
1 /*\r
2  * Copyright (C) 2001, 2002 The Mir-coders group\r
3  *\r
4  * This file is part of Mir.\r
5  *\r
6  * Mir is free software; you can redistribute it and/or modify\r
7  * it under the terms of the GNU General Public License as published by\r
8  * the Free Software Foundation; either version 2 of the License, or\r
9  * (at your option) any later version.\r
10  *\r
11  * Mir is distributed in the hope that it will be useful,\r
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of\r
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\r
14  * GNU General Public License for more details.\r
15  *\r
16  * You should have received a copy of the GNU General Public License\r
17  * along with Mir; if not, write to the Free Software\r
18  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA\r
19  *\r
20  * In addition, as a special exception, The Mir-coders gives permission to link\r
21  * the code of this program with  any library licensed under the Apache Software License,\r
22  * The Sun (tm) Java Advanced Imaging library (JAI), The Sun JIMI library\r
23  * (or with modified versions of the above that use the same license as the above),\r
24  * and distribute linked combinations including the two.  You must obey the\r
25  * GNU General Public License in all respects for all of the code used other than\r
26  * the above mentioned libraries.  If you modify this file, you may extend this\r
27  * exception to your version of the file, but you are not obligated to do so.\r
28  * If you do not wish to do so, delete this exception statement from your version.\r
29  */\r
30 \r
31 package mircoders.entity;\r
32 \r
33 import java.sql.Connection;\r
34 import java.sql.SQLException;\r
35 import java.sql.Statement;\r
36 import java.util.Map;\r
37 \r
38 import mir.entity.Entity;\r
39 import mir.log.LoggerWrapper;\r
40 import mir.storage.StorageObject;\r
41 import mir.storage.StorageObjectFailure;\r
42 import mir.util.StringRoutines;\r
43 import mircoders.storage.DatabaseContentToMedia;\r
44 \r
45 /**\r
46  * this class implements mapping of one line of the database table content\r
47  * to a java object\r
48  *\r
49  * @version $Id: EntityContent.java,v 1.19.2.3 2003/09/19 23:34:20 zapata Exp $\r
50  * @author mir-coders group\r
51  *\r
52  */\r
53 \r
54 \r
55 public class EntityContent extends Entity\r
56 {\r
57   // constructors\r
58 \r
59   public EntityContent()\r
60   {\r
61     super();\r
62 \r
63     logger = new LoggerWrapper("Entity.Content");\r
64   }\r
65 \r
66   public EntityContent(StorageObject theStorage) {\r
67     this();\r
68 \r
69     setStorage(theStorage);\r
70   }\r
71 \r
72   //\r
73   // methods\r
74 \r
75   /**\r
76    * set is_produced flag for the article\r
77    */\r
78 \r
79   public void setProduced(boolean yesno) throws StorageObjectFailure\r
80   {\r
81     String value = (yesno) ? "1":"0";\r
82     if (value.equals( getValue("is_produced") )) return;\r
83 \r
84     Connection con=null;Statement stmt=null;\r
85     String sql = "update content set is_produced='" + value + "' where id='" + getId()+"'";\r
86     try {\r
87       con = theStorageObject.getPooledCon();\r
88       /** @todo should be preparedStatement: faster!! */\r
89       stmt = con.createStatement();\r
90       theStorageObject.executeUpdate(stmt,sql);\r
91     }\r
92     catch (StorageObjectFailure e) {\r
93       throwStorageObjectFailure(e, "\n -- set produced failed");\r
94     }\r
95     catch (SQLException e) {\r
96       throwStorageObjectFailure(e, "\n -- set produced failed");\r
97     }\r
98     finally {\r
99       theStorageObject.freeConnection(con,stmt);\r
100     }\r
101   }\r
102 \r
103   /**\r
104    * Deattaches media from an article\r
105    *\r
106    * @param anArticleId\r
107    * @param aMediaId\r
108    * @throws StorageObjectFailure\r
109    */\r
110   public void dettach(String anArticleId, String aMediaId) throws StorageObjectFailure\r
111   {\r
112     if (aMediaId!=null){\r
113       try{\r
114         DatabaseContentToMedia.getInstance().delete(anArticleId, aMediaId);\r
115       }\r
116       catch (Exception e){\r
117         throwStorageObjectFailure(e, "\n -- failed to get instance");\r
118       }\r
119 \r
120       setProduced(false);\r
121     }\r
122   }\r
123 \r
124   /**\r
125    * Attaches media to an article\r
126    *\r
127    * @param mid\r
128    * @throws StorageObjectFailure\r
129    */\r
130 \r
131   public void attach(String aMediaId) throws StorageObjectFailure\r
132   {\r
133     if (aMediaId!=null) {\r
134       try{\r
135         DatabaseContentToMedia.getInstance().addMedia(getId(),aMediaId);\r
136       }\r
137       catch(StorageObjectFailure e){\r
138         throwStorageObjectFailure(e, "attach: could not get the instance");\r
139       }\r
140       setProduced(false);\r
141     }\r
142     else {\r
143       logger.error("EntityContent: attach without mid");\r
144     }\r
145   }\r
146 \r
147   /**\r
148    * overridden method setValues to patch creator_main_url\r
149    */\r
150   public void setValues(Map theStringValues) {\r
151     if (theStringValues != null) {\r
152       if (theStringValues.containsKey("creator_main_url")){\r
153         if (((String)theStringValues.get("creator_main_url")).equalsIgnoreCase("http://")){\r
154           theStringValues.remove("creator_main_url");\r
155         }\r
156         else if (!((String)theStringValues.get("creator_main_url")).startsWith("http://")){\r
157           theStringValues.put("creator_main_url","http://"+((String)theStringValues.get("creator_main_url")));\r
158         }\r
159       }\r
160     }\r
161     super.setValues(theStringValues);\r
162   }\r
163 \r
164   public void appendToComments(String aLine) {\r
165     StringBuffer comment = new StringBuffer();\r
166     try {\r
167       comment.append(StringRoutines.interpretAsString(getValue("comment")));\r
168     }\r
169     catch (Throwable t) {\r
170     }\r
171     if (comment.length() > 0 && comment.charAt(comment.length() - 1) != '\n') {\r
172       comment.append('\n');\r
173     }\r
174 \r
175     comment.append(aLine);\r
176     setValueForProperty("comment", comment.toString());\r
177   }\r
178 \r
179 \r
180 \r
181 }\r