summaryrefslogtreecommitdiff
path: root/addons/website_slides_forum/controllers/main.py
blob: 2331f11ca46611bac8d1d3073746814dfc27d51c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
# -*- coding: utf-8 -*-
# Part of Odoo. See LICENSE file for full copyright and licensing details.

from odoo.http import request
from odoo.addons.website_slides.controllers.main import WebsiteSlides


class WebsiteSlidesForum(WebsiteSlides):

    def _slide_channel_prepare_values(self, **kwargs):
        channel = super(WebsiteSlidesForum, self)._slide_channel_prepare_values(**kwargs)
        if bool(kwargs.get('link_forum')):
            forum = request.env['forum.forum'].create({
                'name': kwargs.get('name')
            })
            channel['forum_id'] = forum.id
        return channel

    # Profile
    # ---------------------------------------------------

    def _prepare_user_profile_parameters(self, **post):
        post = super(WebsiteSlidesForum, self)._prepare_user_profile_parameters(**post)
        if post.get('channel_id'):
            channel = request.env['slide.channel'].browse(int(post.get('channel_id')))
            if channel.forum_id:
                post.update({
                    'forum_id': channel.forum_id.id,
                    'no_forum': False
                })
            else:
                post.update({'no_forum': True})
        return post