Giter VIP home page Giter VIP logo

Comments (9)

theomathieubhvr avatar theomathieubhvr commented on May 12, 2024 1

OK i managed to do it !

I can make a Pull request if needed (but I think this is too specific).

To sum up how I did, I created a custom OriginService for server (for browser I just set origin to window.location.origin).

import { Injectable, Inject } from '@angular/core';
import { Request } from 'express';
import { REQUEST } from '@nguniversal/express-engine/tokens';

@Injectable()
export class OriginService {
  public origin: string;

  constructor(@Inject(REQUEST) private request: Request) {
    this.origin = request.hostname;
  }
}

from universal.

fulls1z3 avatar fulls1z3 commented on May 12, 2024

Currently not, but I'll have a look at this probably in the weekend.

from universal.

Gbuomprisco avatar Gbuomprisco commented on May 12, 2024

@theomathieubhvr, I am not totally aware of your specific case, but can't (and shouldn't?) the router handle that?

from universal.

theomathieubhvr avatar theomathieubhvr commented on May 12, 2024

@Gbuomprisco I'm trying to get the domain of the website I visit.

I tried to do this
console.warn((router as any).location._platformStrategy._platformLocation.location); with no luck server-side.

from universal.

fulls1z3 avatar fulls1z3 commented on May 12, 2024

Well, I can suggest you a simple workaround to retrieve that value using ngx-meta.

There's the applicationUrl parameter in config.json, which is passed to MetaStaticLoader on app.module. This value is rendered on the page as the og:url (<meta property="og:url" content="http://yourwebsite.com/current_route">).

You can always access the contents of og:url meta tag through the DOM, and then split the value using the slashes.

from universal.

theomathieubhvr avatar theomathieubhvr commented on May 12, 2024

Ok sorry but I checked and appplicationUrl parameter is very much static.

Maybe I haven't been clear, I will try to reexplain.

Assuming I have a news website with two categories, Politics and Economics. I want to offer http://politics.website.com and http://economics.website.com as urls that my user can go to.

These with ONE repository, yours. I want to know which user is on which website.

Is there any way to do this ?

Thanks :)

from universal.

mohitkadelongraph avatar mohitkadelongraph commented on May 12, 2024

@theomathieubhvr I tried you method and I am able to get origin url but its giving an error on browser:

Uncaught TypeError: Cannot read property 'prototype' of undefined
    at Object.<anonymous> (request.js:31)
var req = Object.create(http.IncomingMessage.prototype)

from universal.

theomathieubhvr avatar theomathieubhvr commented on May 12, 2024

Have you created a OriginService for the browser too ?

from universal.

dr1ss avatar dr1ss commented on May 12, 2024

Any way to achieve this (get the express request object) with @ngx-universal/express-engine please ?

from universal.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.