1.1 restoration
[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.AbstractEntity;
39 import mir.log.LoggerWrapper;
40 import mir.storage.StorageObject;
41 import mir.storage.StorageObjectFailure;
42 import mircoders.storage.DatabaseContentToMedia;
43
44 /**
45  * this class implements mapping of one line of the database table content
46  * to a java object
47  *
48  * @version $Id: EntityContent.java,v 1.19.2.7 2004/11/21 22:07:13 zapata Exp $
49  * @author mir-coders group
50  *
51  */
52
53
54 public class EntityContent extends AbstractEntity {
55   // constructors
56
57   public EntityContent()
58   {
59     super();
60
61     logger = new LoggerWrapper("Entity.Content");
62   }
63
64   public EntityContent(StorageObject theStorage) {
65     this();
66
67     setStorage(theStorage);
68   }
69
70   /**
71    * set is_produced flag for the article
72    */
73   public void setProduced(boolean yesno) throws StorageObjectFailure
74   {
75     String value = (yesno) ? "1":"0";
76     if (value.equals( getFieldValue("is_produced") )) return;
77
78     Connection con=null;Statement stmt=null;
79     String sql = "update content set is_produced='" + value + "' where id='" + getId()+"'";
80     try {
81       con = storageObject.obtainConnection();
82       /** todo should be preparedStatement: faster!! */
83       stmt = con.createStatement();
84       storageObject.executeUpdate(stmt,sql);
85     }
86     catch (StorageObjectFailure e) {
87       throw e;
88     }
89     catch (SQLException e) {
90       throw new StorageObjectFailure(e);
91     }
92     finally {
93       storageObject.freeConnection(con,stmt);
94     }
95   }
96
97   /**
98    * Deattaches media from an article
99    *
100    * @param anArticleId
101    * @param aMediaId
102    * @throws StorageObjectFailure
103    */
104   public void dettach(String anArticleId, String aMediaId) throws StorageObjectFailure
105   {
106     if (aMediaId!=null){
107       DatabaseContentToMedia.getInstance().delete(anArticleId, aMediaId);
108
109       setProduced(false);
110     }
111   }
112
113   /**
114    * Attaches media to the article
115    */
116
117   public void attach(String aMediaId) throws StorageObjectFailure
118   {
119     if (aMediaId!=null) {
120       DatabaseContentToMedia.getInstance().addMedia(getId(),aMediaId);
121       setProduced(false);
122     }
123     else {
124       logger.error("EntityContent: attach without mid");
125     }
126   }
127
128   /**
129    * overridden method setFieldValues to patch creator_main_url
130    */
131   public void setFieldValues(Map theStringValues) {
132     if (theStringValues != null) {
133       if (theStringValues.containsKey("creator_main_url")){
134         if (((String)theStringValues.get("creator_main_url")).equalsIgnoreCase("http://")){
135           theStringValues.remove("creator_main_url");
136         }
137         else if (!((String)theStringValues.get("creator_main_url")).startsWith("http://")){
138           theStringValues.put("creator_main_url","http://"+((String)theStringValues.get("creator_main_url")));
139         }
140       }
141     }
142     super.setFieldValues(theStringValues);
143   }
144 }