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