[FIX] hr_timesheet_sheet, project_timesheet: Corrected typo.
[odoo/odoo.git] / addons / document / document.py
1 # -*- coding: utf-8 -*-
2 ##############################################################################
3 #
4 #    OpenERP, Open Source Management Solution
5 #    Copyright (C) 2004-2010 Tiny SPRL (<http://tiny.be>).
6 #
7 #    This program is free software: you can redistribute it and/or modify
8 #    it under the terms of the GNU Affero General Public License as
9 #    published by the Free Software Foundation, either version 3 of the
10 #    License, or (at your option) any later version.
11 #
12 #    This program is distributed in the hope that it will be useful,
13 #    but WITHOUT ANY WARRANTY; without even the implied warranty of
14 #    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 #    GNU Affero General Public License for more details.
16 #
17 #    You should have received a copy of the GNU Affero General Public License
18 #    along with this program.  If not, see <http://www.gnu.org/licenses/>.
19 #
20 ##############################################################################
21
22 import base64
23 from osv import osv, fields
24 import os
25
26 # from psycopg2 import Binary
27 #from tools import config
28 import tools
29 from tools.translate import _
30 import nodes
31 import logging
32
33 DMS_ROOT_PATH = tools.config.get('document_path', os.path.join(tools.config['root_path'], 'filestore'))
34
35 class document_file(osv.osv):
36     _inherit = 'ir.attachment'
37     _rec_name = 'datas_fname'
38     def _get_filestore(self, cr):
39         return os.path.join(DMS_ROOT_PATH, cr.dbname)
40
41     def _data_get(self, cr, uid, ids, name, arg, context):
42         fbrl = self.browse(cr, uid, ids, context=context)
43         nctx = nodes.get_node_context(cr, uid, context={})
44         # nctx will /not/ inherit the caller's context. Most of
45         # it would be useless, anyway (like active_id, active_model,
46         # bin_size etc.)
47         result = {}
48         bin_size = context.get('bin_size', False)
49         for fbro in fbrl:
50             fnode = nodes.node_file(None, None, nctx, fbro)
51             if not bin_size:
52                     data = fnode.get_data(cr, fbro)
53                     result[fbro.id] = base64.encodestring(data or '')
54             else:
55                     result[fbro.id] = fnode.get_data_len(cr, fbro)
56
57         return result
58
59     #
60     # This code can be improved
61     #
62     def _data_set(self, cr, uid, id, name, value, arg, context):
63         if not value:
64             return True
65         fbro = self.browse(cr, uid, id, context=context)
66         nctx = nodes.get_node_context(cr, uid, context={})
67         fnode = nodes.node_file(None, None, nctx, fbro)
68         res = fnode.set_data(cr, base64.decodestring(value), fbro)
69         return res
70
71     _columns = {
72         # Columns from ir.attachment:
73         'create_date': fields.datetime('Date Created', readonly=True),
74         'create_uid':  fields.many2one('res.users', 'Creator', readonly=True),
75         'write_date': fields.datetime('Date Modified', readonly=True),
76         'write_uid':  fields.many2one('res.users', 'Last Modification User', readonly=True),
77         'res_model': fields.char('Attached Model', size=64, readonly=True),
78         'res_id': fields.integer('Attached ID', readonly=True),
79
80         # If ir.attachment contained any data before document is installed, preserve
81         # the data, don't drop the column!
82         'db_datas': fields.binary('Data', oldname='datas'),
83         'datas': fields.function(_data_get, method=True, fnct_inv=_data_set, string='File Content', type="binary", nodrop=True),
84
85         # Fields of document:
86         'user_id': fields.many2one('res.users', 'Owner', select=1),
87         # 'group_ids': fields.many2many('res.groups', 'document_group_rel', 'item_id', 'group_id', 'Groups'),
88         # the directory id now is mandatory. It can still be computed automatically.
89         'parent_id': fields.many2one('document.directory', 'Directory', select=1, required=True),
90         'index_content': fields.text('Indexed Content'),
91         'partner_id':fields.many2one('res.partner', 'Partner', select=1),
92         'file_size': fields.integer('File Size', required=True),
93         'file_type': fields.char('Content Type', size=128),
94
95         # fields used for file storage
96         'store_fname': fields.char('Stored Filename', size=200),
97     }
98     _order = "create_date desc"
99
100     def __get_def_directory(self, cr, uid, context=None):
101         dirobj = self.pool.get('document.directory')
102         return dirobj._get_root_directory(cr, uid, context)
103
104     _defaults = {
105         'user_id': lambda self, cr, uid, ctx:uid,
106         'file_size': lambda self, cr, uid, ctx:0,
107         'parent_id': __get_def_directory
108     }
109     _sql_constraints = [
110         # filename_uniq is not possible in pure SQL
111     ]
112     def _check_duplication(self, cr, uid, vals, ids=[], op='create'):
113         name = vals.get('name', False)
114         parent_id = vals.get('parent_id', False)
115         res_model = vals.get('res_model', False)
116         res_id = vals.get('res_id', 0)
117         if op == 'write':
118             for file in self.browse(cr, uid, ids): # FIXME fields_only
119                 if not name:
120                     name = file.name
121                 if not parent_id:
122                     parent_id = file.parent_id and file.parent_id.id or False
123                 if not res_model:
124                     res_model = file.res_model and file.res_model or False
125                 if not res_id:
126                     res_id = file.res_id and file.res_id or 0
127                 res = self.search(cr, uid, [('id', '<>', file.id), ('name', '=', name), ('parent_id', '=', parent_id), ('res_model', '=', res_model), ('res_id', '=', res_id)])
128                 if len(res):
129                     return False
130         if op == 'create':
131             res = self.search(cr, uid, [('name', '=', name), ('parent_id', '=', parent_id), ('res_id', '=', res_id), ('res_model', '=', res_model)])
132             if len(res):
133                 return False
134         return True
135
136     def copy(self, cr, uid, id, default=None, context=None):
137         if not default:
138             default = {}
139         if 'name' not in default:
140             name = self.read(cr, uid, [id])[0]['name']
141             default.update({'name': name + " (copy)"})
142         return super(document_file, self).copy(cr, uid, id, default, context)
143
144     def write(self, cr, uid, ids, vals, context=None):
145         result = False
146         if not isinstance(ids, list):
147             ids = [ids]
148         res = self.search(cr, uid, [('id', 'in', ids)])
149         if not len(res):
150             return False
151         if not self._check_duplication(cr, uid, vals, ids, 'write'):
152             raise osv.except_osv(_('ValidateError'), _('File name must be unique!'))
153
154         # if nodes call this write(), they must skip the code below
155         from_node = context and context.get('__from_node', False)
156         if (('parent_id' in vals) or ('name' in vals)) and not from_node:
157             # perhaps this file is renaming or changing directory
158             nctx = nodes.get_node_context(cr,uid,context={})
159             dirobj = self.pool.get('document.directory')
160             if 'parent_id' in vals:
161                 dbro = dirobj.browse(cr, uid, vals['parent_id'], context=context)
162                 dnode = nctx.get_dir_node(cr, dbro)
163             else:
164                 dbro = None
165                 dnode = None
166             ids2 = []
167             for fbro in self.browse(cr, uid, ids, context=context):
168                 if ('parent_id' not in vals or fbro.parent_id.id == vals['parent_id']) \
169                     and ('name' not in vals or fbro.name == vals['name']) :
170                         ids2.append(fbro.id)
171                         continue
172                 fnode = nctx.get_file_node(cr, fbro)
173                 res = fnode.move_to(cr, dnode or fnode.parent, vals.get('name', fbro.name), fbro, dbro, True)
174                 if isinstance(res, dict):
175                     vals2 = vals.copy()
176                     vals2.update(res)
177                     wid = res.get('id', fbro.id)
178                     result = super(document_file,self).write(cr,uid,wid,vals2,context=context)
179                     # TODO: how to handle/merge several results?
180                 elif res == True:
181                     ids2.append(fbro.id)
182                 elif res == False:
183                     pass
184             ids = ids2
185         if 'file_size' in vals: # only write that field using direct SQL calls
186             del vals['file_size']
187         if len(ids) and len(vals):
188             result = super(document_file,self).write(cr, uid, ids, vals, context=context)
189         cr.commit() # ?
190         return result
191
192     def create(self, cr, uid, vals, context=None):
193         if context is None:
194             context = {}
195         vals['parent_id'] = context.get('parent_id', False) or vals.get('parent_id', False)
196         if not vals['parent_id']:
197             vals['parent_id'] = self.pool.get('document.directory')._get_root_directory(cr,uid, context)
198         if not vals.get('res_id', False) and context.get('default_res_id', False):
199             vals['res_id'] = context.get('default_res_id', False)
200         if not vals.get('res_model', False) and context.get('default_res_model', False):
201             vals['res_model'] = context.get('default_res_model', False)
202         if vals.get('res_id', False) and vals.get('res_model', False) \
203                 and not vals.get('partner_id', False):
204             vals['partner_id'] = self.__get_partner_id(cr, uid, \
205                 vals['res_model'], vals['res_id'], context)
206
207         datas = None
208         if vals.get('link', False) :
209             import urllib
210             datas = base64.encodestring(urllib.urlopen(vals['link']).read())
211         else:
212             datas = vals.get('datas', False)
213
214         if datas:
215             vals['file_size'] = len(datas)
216         else:
217             if vals.get('file_size'):
218                 del vals['file_size']
219         if not self._check_duplication(cr, uid, vals):
220             raise osv.except_osv(_('ValidateError'), _('File name must be unique!'))
221         result = super(document_file, self).create(cr, uid, vals, context)
222         cr.commit() # ?
223         return result
224
225     def __get_partner_id(self, cr, uid, res_model, res_id, context):
226         """ A helper to retrieve the associated partner from any res_model+id
227             It is a hack that will try to discover if the mentioned record is
228             clearly associated with a partner record.
229         """
230         obj_model = self.pool.get(res_model)
231         if obj_model._name == 'res.partner':
232             return res_id
233         elif 'partner_id' in obj_model._columns and obj_model._columns['partner_id']._obj == 'res.partner':
234             bro = obj_model.browse(cr, uid, res_id, context=context)
235             return bro.partner_id.id
236         elif 'address_id' in obj_model._columns and obj_model._columns['address_id']._obj == 'res.partner.address':
237             bro = obj_model.browse(cr, uid, res_id, context=context)
238             return bro.address_id.partner_id.id
239         return False
240
241     def unlink(self, cr, uid, ids, context=None):
242         stor = self.pool.get('document.storage')
243         unres = []
244         # We have to do the unlink in 2 stages: prepare a list of actual
245         # files to be unlinked, update the db (safer to do first, can be
246         # rolled back) and then unlink the files. The list wouldn't exist
247         # after we discard the objects
248
249         for f in self.browse(cr, uid, ids, context):
250             # TODO: update the node cache
251             par = f.parent_id
252             storage_id = None
253             while par:
254                 if par.storage_id:
255                     storage_id = par.storage_id
256                     break
257                 par = par.parent_id
258             #assert storage_id, "Strange, found file #%s w/o storage!" % f.id #TOCHECK: after run yml, it's fail
259             if storage_id:
260                 r = stor.prepare_unlink(cr, uid, storage_id, f)
261                 if r:
262                     unres.append(r)
263             else:
264                 logging.getLogger('document').warning("Unlinking attachment #%s %s that has no storage",
265                                                 f.id, f.name)
266         res = super(document_file, self).unlink(cr, uid, ids, context)
267         stor.do_unlink(cr, uid, unres)
268         return res
269
270 document_file()
271