Skip to Content
Odoo Menu
  • Prihlásiť sa
  • Vyskúšajte zadarmo
  • Aplikácie
    Financie
    • Účtovníctvo
    • Fakturácia
    • Výdavky
    • Tabuľka (BI)
    • Dokumenty
    • Podpis
    Predaj
    • CRM
    • Predaj
    • POS Shop
    • POS Restaurant
    • Manažment odberu
    • Požičovňa
    Webstránky
    • Tvorca webstránok
    • eShop
    • Blog
    • Fórum
    • Živý chat
    • eLearning
    Supply Chain
    • Sklad
    • Výroba
    • Správa životného cyklu produktu
    • Nákup
    • Údržba
    • Manažment kvality
    Ľudské zdroje
    • Zamestnanci
    • Nábor zamestnancov
    • Voľné dni
    • Hodnotenia
    • Odporúčania
    • Vozový park
    Marketing
    • Marketing sociálnych sietí
    • Email marketing
    • SMS marketing
    • Eventy
    • Marketingová automatizácia
    • Prieskumy
    Služby
    • Projektové riadenie
    • Pracovné výkazy
    • Práca v teréne
    • Helpdesk
    • Plánovanie
    • Schôdzky
    Produktivita
    • Tímová komunikácia
    • Schvalovania
    • IoT
    • VoIP
    • Znalosti
    • WhatsApp
    Third party apps Odoo Studio Odoo Cloud Platform
  • Priemyselné odvetvia
    Retail
    • Book Store
    • Clothing Store
    • Furniture Store
    • Grocery Store
    • Hardware Store
    • Toy Store
    Food & Hospitality
    • Bar and Pub
    • Reštaurácia
    • Fast Food
    • Guest House
    • Beverage distributor
    • Hotel
    Reality
    • Real Estate Agency
    • Architecture Firm
    • Konštrukcia
    • Estate Managament
    • Gardening
    • Property Owner Association
    Poradenstvo
    • Accounting Firm
    • Odoo Partner
    • Marketing Agency
    • Law firm
    • Talent Acquisition
    • Audit & Certification
    Výroba
    • Textile
    • Metal
    • Furnitures
    • Jedlo
    • Brewery
    • Corporate Gifts
    Health & Fitness
    • Sports Club
    • Eyewear Store
    • Fitness Center
    • Wellness Practitioners
    • Pharmacy
    • Hair Salon
    Trades
    • Handyman
    • IT Hardware and Support
    • Solar Energy Systems
    • Shoe Maker
    • Cleaning Services
    • HVAC Services
    Iní
    • Nonprofit Organization
    • Environmental Agency
    • Billboard Rental
    • Photography
    • Bike Leasing
    • Software Reseller
    Browse all Industries
  • Komunita
    Vzdelávanie
    • Tutoriály
    • Dokumentácia
    • Certifikácie
    • Školenie
    • Blog
    • Podcast
    Empower Education
    • Vzdelávací program
    • Scale Up! Business Game
    • Visit Odoo
    Softvér
    • Stiahnuť
    • Porovnanie Community a Enterprise vierzie
    • Releases
    Spolupráca
    • Github
    • Fórum
    • Eventy
    • Preklady
    • Staň sa partnerom
    • Services for Partners
    • Register your Accounting Firm
    Služby
    • Nájdite partnera
    • Nájdite účtovníka
    • Meet an advisor
    • Implementation Services
    • Zákaznícke referencie
    • Podpora
    • Upgrades
    ​Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Získajte demo
  • Cenník
  • Pomoc

Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:

  • CRM
  • e-Commerce
  • Účtovníctvo
  • Sklady
  • PoS
  • Projektové riadenie
  • MRP
All apps
You need to be registered to interact with the community.
All Posts People Badges
Tagy (View all)
odoo accounting v14 pos v15
About this forum
You need to be registered to interact with the community.
All Posts People Badges
Tagy (View all)
odoo accounting v14 pos v15
About this forum
Pomoc

Controller

Odoberať

Get notified when there's activity on this post

This question has been flagged
urlcontrollersredirection
2992 Zobrazenia
Avatar
Ravi Bhatt

***model.py***

from odoo import api, fields, modelsfrom odoo.exceptions import ValidationErrorimport re

class UrlRedirect(models.Model): _name = 'url.redirect' _description = "Url redirect"

name = fields.Char(string='Name', required=True) 
source_url = fields.Char(string='Identifier', index=True) 
destination_url = fields.Char(string="URL to redirect")  
active = fields.Boolean(default=True)
visit_count = fields.Integer(string='Visit Count', default=0) 
visitor_id = fields.Many2one('res.users', string='Partner')
source_url_with_prefix = fields.Char(string='Identifier with Prefix', compute="_compute_source_url_with_prefix")

@api.depends('source_url') def _compute_source_url_with_prefix(self): for record in self: if record.source_url and not record.source_url.startswith('r-'): record.source_url_with_prefix = 'r-' + record.source_url else: record.source_url_with_prefix = record.source_url


@api.constrains('source_url') def _check_source_url(self): for record in self: if not re.match(r'^[a-zA-Z0-9\-]+$', record.source_url): raise ValidationError("The source URL can only contain a-z, A-Z, 0-9, and hyphens.")


***controller.py***
from odoo import http

from odoo.http import request

import re


def is_valid_url(source_url):

        import re

        return re.match(r'^[a-zA-Z0-9\-]+$', source_url)


class URLRedirectController(http.Controller):


    @http.route('/', type='http', auth='public', website=True)

    def url_redirect(self, source_url):

        if not is_valid_url(source_url):

            return "Invalid URL. Only letters, digits, and hyphens are allowed."


        try:

            redirect_record = request.env['url.redirect'].search([('source_url', '=', source_url)], limit=1)

            if redirect_record:

                redirect_record.visit_count += 1

                destination_url = redirect_record.destination_url

                return request.redirect(destination_url, local=False)

            else:

                return request.not_found()

        except Exception as e:

            return str(e)

            

        else:

            return request.not_found()


the thing i want to do is when i enter the source URL in search bar i should be redirected to the destination URL that is working properly but i also want to count the number of visits on that specific URL which i took it as a string but when i try to enter the URL and successfully redirected to destination URL visitor counter increases by 2 instead of 1 this is probably happening because of the destination URL is also type of string so to avoid this thing i tried to added prefix r- before / so i replaced first line like  this """@http.route('/r-', type='http', auth='public', website=True)""" but now i have to manually enter the r-prefix whenever i try to enter source URL and fullfill the purpose i previously did, is there anyway by which i can always get prefix r- in the url even if i just enter some string (for example """/shop""" should be automatically converted into """/r-shop""") and also i should be redirected to the destination location. ***model.py***

from odoo import api, fields, modelsfrom odoo.exceptions import ValidationErrorimport re

class UrlRedirect(models.Model): _name = 'url.redirect' _description = "Url redirect"

name = fields.Char(string='Name', required=True) website_id = fields.Many2one('website', string="Website", ondelete='cascade', index=True) source_url = fields.Char(string='Identifier', index=True) destination_url = fields.Char(string="URL to redirect") # route_id = fields.Many2one('website.route') active = fields.Boolean(default=True) visit_count = fields.Integer(string='Visit Count', default=0) visitor_id = fields.Many2one('res.users', string='Partner') source_url_with_prefix = fields.Char(string='Identifier with Prefix', compute="_compute_source_url_with_prefix")

@api.depends('source_url') def _compute_source_url_with_prefix(self): for record in self: if record.source_url and not record.source_url.startswith('r-'): record.source_url_with_prefix = 'r-' + record.source_url else: record.source_url_with_prefix = record.source_url


@api.constrains('source_url') def _check_source_url(self): for record in self: if not re.match(r'^[a-zA-Z0-9\-]+$', record.source_url): raise ValidationError("The source URL can only contain a-z, A-Z, 0-9, and hyphens.")


***controller.py***
from odoo import http

from odoo.http import request

import re


def is_valid_url(source_url):

        import re

        return re.match(r'^[a-zA-Z0-9\-]+$', source_url)


class URLRedirectController(http.Controller):


    @http.route('/', type='http', auth='public', website=True)

    def url_redirect(self, source_url):

        if not is_valid_url(source_url):

            return "Invalid URL. Only letters, digits, and hyphens are allowed."


        try:

            redirect_record = request.env['url.redirect'].search([('source_url', '=', source_url)], limit=1)

            if redirect_record:

                redirect_record.visit_count += 1

                destination_url = redirect_record.destination_url

                return request.redirect(destination_url, local=False)

            else:

                return request.not_found()

        except Exception as e:

            return str(e)

            

        else:

            return request.not_found()


the thing i want to do is when i enter the source URL in search bar i should be redirected to the destination URL that is working properly but i also want to count the number of visits on that specific URL which i took it as a string but when i try to enter the URL and successfully redirected to destination URL visitor counter increases by 2 instead of 1 this is probably happening because of the destination URL is also type of string so to avoid this thing i tried to added prefix r- before / so i replaced first line like  this """@http.route('/r-', type='http', auth='public', website=True)""" but now i have to manually enter the r-prefix whenever i try to enter source URL and fullfill the purpose i previously did, is there anyway by which i can always get prefix r- in the url even if i just enter some string (for example """/shop""" should be automatically converted into """/r-shop""") and also i should be redirected to the destination location. 

0
Avatar
Zrušiť
Enjoying the discussion? Don't just read, join in!

Create an account today to enjoy exclusive features and engage with our awesome community!

Registrácia
Related Posts Replies Zobrazenia Aktivita
change website product page URL
url redirection
Avatar
0
feb 21
3812
i want to access of querystring in controller Solved
url controllers odoo10
Avatar
Avatar
Avatar
3
júl 19
16571
Odoo V10: Disable '?debug' in the url
debug url controllers
Avatar
0
mar 18
365
Open an url using python, without using return
models actions url controllers
Avatar
Avatar
1
júl 21
5973
i want to access model objects in odoo controlle Solved
query url controllers odoo10
Avatar
Avatar
2
jan 20
8351
Komunita
  • Tutoriály
  • Dokumentácia
  • Fórum
Open Source
  • Stiahnuť
  • Github
  • Runbot
  • Preklady
Služby
  • Odoo.sh hosting
  • Podpora
  • Vyššia verzia
  • Custom Developments
  • Vzdelávanie
  • Nájdite účtovníka
  • Nájdite partnera
  • Staň sa partnerom
O nás
  • Naša spoločnosť
  • Majetok značky
  • Kontaktujte nás
  • Pracovné ponuky
  • Eventy
  • Podcast
  • Blog
  • Zákazníci
  • Právne dokumenty • Súkromie
  • Bezpečnosť
الْعَرَبيّة Català 简体中文 繁體中文 (台灣) Čeština Dansk Nederlands English Suomi Français Deutsch हिंदी Bahasa Indonesia Italiano 日本語 한국어 (KR) Lietuvių kalba Język polski Português (BR) română русский язык Slovenský jazyk slovenščina Español (América Latina) Español ภาษาไทย Türkçe українська Tiếng Việt

Odoo je sada podnikových aplikácií s otvoreným zdrojovým kódom, ktoré pokrývajú všetky potreby vašej spoločnosti: CRM, e-shop, účtovníctvo, skladové hospodárstvo, miesto predaja, projektový manažment atď.

Odoo prináša vysokú pridanú hodnotu v jednoduchom použití a súčasne plne integrovanými biznis aplikáciami.

Website made with

Odoo Experience on YouTube

1. Use the live chat to ask your questions.
2. The operator answers within a few minutes.

Live support on Youtube
Watch now