9ed7fb4025af2d3fb43bd21cd842b049787adeb0
[odoo/odoo.git] / addons / website_blog / models / website_blog.py
1 # -*- coding: utf-8 -*-
2
3 from datetime import datetime
4 import difflib
5 import lxml
6 import random
7
8 from openerp import tools
9 from openerp import SUPERUSER_ID
10 from openerp.osv import osv, fields
11 from openerp.tools.translate import _
12
13
14 class Blog(osv.Model):
15     _name = 'blog.blog'
16     _description = 'Blogs'
17     _inherit = ['mail.thread', 'website.seo.metadata']
18     _order = 'name'
19     _columns = {
20         'name': fields.char('Blog Name', required=True),
21         'subtitle': fields.char('Blog Subtitle'),
22         'description': fields.text('Description'),
23     }
24
25
26 class BlogTag(osv.Model):
27     _name = 'blog.tag'
28     _description = 'Blog Tag'
29     _inherit = ['website.seo.metadata']
30     _order = 'name'
31     _columns = {
32         'name': fields.char('Name', required=True),
33     }
34
35
36 class BlogPost(osv.Model):
37     _name = "blog.post"
38     _description = "Blog Post"
39     _inherit = ['mail.thread', 'website.seo.metadata']
40     _order = 'id DESC'
41
42     def _compute_ranking(self, cr, uid, ids, name, arg, context=None):
43         res = {}
44         for blog_post in self.browse(cr, uid, ids, context=context):
45             age = datetime.now() - datetime.strptime(blog_post.create_date, tools.DEFAULT_SERVER_DATETIME_FORMAT)
46             res[blog_post.id] = blog_post.visits * (0.5+random.random()) / max(3, age.days)
47         return res
48
49     _columns = {
50         'name': fields.char('Title', required=True, translate=True),
51         'subtitle': fields.char('Sub Title', translate=True),
52         'author_id': fields.many2one('res.partner', 'Author'),
53         'background_image': fields.binary('Background Image', oldname='content_image'),
54         'blog_id': fields.many2one(
55             'blog.blog', 'Blog',
56             required=True, ondelete='cascade',
57         ),
58         'tag_ids': fields.many2many(
59             'blog.tag', string='Tags',
60         ),
61         'content': fields.html('Content', translate=True, sanitize=False),
62         # website control
63         'website_published': fields.boolean(
64             'Publish', help="Publish on the website", copy=False,
65         ),
66         'website_message_ids': fields.one2many(
67             'mail.message', 'res_id',
68             domain=lambda self: [
69                 '&', '&', ('model', '=', self._name), ('type', '=', 'comment'), ('path', '=', False)
70             ],
71             string='Website Messages',
72             help="Website communication history",
73         ),
74         'history_ids': fields.one2many(
75             'blog.post.history', 'post_id',
76             'History', help='Last post modifications',
77         ),
78         # creation / update stuff
79         'create_date': fields.datetime(
80             'Created on',
81             select=True, readonly=True,
82         ),
83         'create_uid': fields.many2one(
84             'res.users', 'Author',
85             select=True, readonly=True,
86         ),
87         'write_date': fields.datetime(
88             'Last Modified on',
89             select=True, readonly=True,
90         ),
91         'write_uid': fields.many2one(
92             'res.users', 'Last Contributor',
93             select=True, readonly=True,
94         ),
95         'author_avatar': fields.related(
96             'author_id', 'image_small',
97             string="Avatar", type="binary"),
98         'visits': fields.integer('No of Views'),
99         'ranking': fields.function(_compute_ranking, string='Ranking', type='float'),
100     }
101
102     _defaults = {
103         'name': _('Blog Post Title'),
104         'subtitle': _('Subtitle'),
105         'author_id': lambda self, cr, uid, ctx=None: self.pool['res.users'].browse(cr, uid, uid, context=ctx).partner_id.id,
106     }
107
108     def html_tag_nodes(self, html, attribute=None, tags=None, context=None):
109         """ Processing of html content to tag paragraphs and set them an unique
110         ID.
111         :return result: (html, mappin), where html is the updated html with ID
112                         and mapping is a list of (old_ID, new_ID), where old_ID
113                         is None is the paragraph is a new one. """
114         mapping = []
115         if not html:
116             return html, mapping
117         if tags is None:
118             tags = ['p']
119         if attribute is None:
120             attribute = 'data-unique-id'
121         counter = 0
122
123         # form a tree
124         root = lxml.html.fragment_fromstring(html, create_parent='div')
125         if not len(root) and root.text is None and root.tail is None:
126             return html, mapping
127
128         # check all nodes, replace :
129         # - img src -> check URL
130         # - a href -> check URL
131         for node in root.iter():
132             if not node.tag in tags:
133                 continue
134             ancestor_tags = [parent.tag for parent in node.iterancestors()]
135             if ancestor_tags:
136                 ancestor_tags.pop()
137             ancestor_tags.append('counter_%s' % counter)
138             new_attribute = '/'.join(reversed(ancestor_tags))
139             old_attribute = node.get(attribute)
140             node.set(attribute, new_attribute)
141             mapping.append((old_attribute, counter))
142             counter += 1
143
144         html = lxml.html.tostring(root, pretty_print=False, method='html')
145         # this is ugly, but lxml/etree tostring want to put everything in a 'div' that breaks the editor -> remove that
146         if html.startswith('<div>') and html.endswith('</div>'):
147             html = html[5:-6]
148         return html, mapping
149
150     def _postproces_content(self, cr, uid, id, content=None, context=None):
151         if content is None:
152             content = self.browse(cr, uid, id, context=context).content
153         if content is False:
154             return content
155         content, mapping = self.html_tag_nodes(content, attribute='data-chatter-id', tags=['p'], context=context)
156         for old_attribute, new_attribute in mapping:
157             if not old_attribute:
158                 continue
159             msg_ids = self.pool['mail.message'].search(cr, SUPERUSER_ID, [('path', '=', old_attribute)], context=context)
160             self.pool['mail.message'].write(cr, SUPERUSER_ID, msg_ids, {'path': new_attribute}, context=context)
161         return content
162
163     def create_history(self, cr, uid, ids, vals, context=None):
164         for i in ids:
165             history = self.pool.get('blog.post.history')
166             if vals.get('content'):
167                 res = {
168                     'content': vals.get('content', ''),
169                     'post_id': i,
170                 }
171                 history.create(cr, uid, res)
172
173     def create(self, cr, uid, vals, context=None):
174         if context is None:
175             context = {}
176         if 'content' in vals:
177             vals['content'] = self._postproces_content(cr, uid, None, vals['content'], context=context)
178         create_context = dict(context, mail_create_nolog=True)
179         post_id = super(BlogPost, self).create(cr, uid, vals, context=create_context)
180         self.create_history(cr, uid, [post_id], vals, context)
181         return post_id
182
183     def write(self, cr, uid, ids, vals, context=None):
184         if 'content' in vals:
185             vals['content'] = self._postproces_content(cr, uid, None, vals['content'], context=context)
186         result = super(BlogPost, self).write(cr, uid, ids, vals, context)
187         self.create_history(cr, uid, ids, vals, context)
188         return result
189
190 class BlogPostHistory(osv.Model):
191     _name = "blog.post.history"
192     _description = "Blog Post History"
193     _order = 'id DESC'
194     _rec_name = "create_date"
195
196     _columns = {
197         'post_id': fields.many2one('blog.post', 'Blog Post'),
198         'summary': fields.char('Summary', select=True),
199         'content': fields.text("Content"),
200         'create_date': fields.datetime("Date"),
201         'create_uid': fields.many2one('res.users', "Modified By"),
202     }
203
204     def getDiff(self, cr, uid, v1, v2, context=None):
205         history_pool = self.pool.get('blog.post.history')
206         text1 = history_pool.read(cr, uid, [v1], ['content'])[0]['content']
207         text2 = history_pool.read(cr, uid, [v2], ['content'])[0]['content']
208         line1 = line2 = ''
209         if text1:
210             line1 = text1.splitlines(1)
211         if text2:
212             line2 = text2.splitlines(1)
213         if (not line1 and not line2) or (line1 == line2):
214             raise osv.except_osv(_('Warning!'), _('There are no changes in revisions.'))
215         diff = difflib.HtmlDiff()
216         return diff.make_table(line1, line2, "Revision-%s" % (v1), "Revision-%s" % (v2), context=True)