Self Link previews not showing for private sites?

My link preview is just showing the URL and no link preview. Note: my website is a private instance. Any suggestions to get this working?

1개의 좋아요

Private urls behind login cannot onebox.

2개의 좋아요

Is it possible to turn it off completely then, so I can show the full link?

Does it actually render like that if you post it though?

Yup it renders exactly like that.

Can you repro this @techapj? We should not render a busted onebox when a password protected site oneboxes itself.

3개의 좋아요

Yes I can repro this, but only on private (login required) hosted instances.

The correct oneboxing behaviour in case of private instances is that the post gets oneboxed using local onebox class, but in case of private hosted instances this is not happening (it’s using WhitelistedGenericOnebox class instead).

I am looking into this issue and will post here with more updates.

7개의 좋아요

This issue is also affecting me. We are running the latest Discourse, using the standard Docker container on a Digital Ocean Ubuntu droplet.

1개의 좋아요

I have a login required and I’m seeing this too.

If your queue is too long could you give me any directions to craft a PR?

2개의 좋아요

Thanks Rafael!

The underlying issue is that in case of some Discourse instances (private hosted in my experience) the DiscourseLocalOnebox engine is not being used (which is responsible for oneboxing internal topics/posts)

https://github.com/discourse/discourse/blob/master/lib/onebox/engine/discourse_local_onebox.rb#L6

I can’t figure out why in some cases the above engine is not being used, will appreciate your help with this.

1개의 좋아요

Hey @techAPJ, good and bad news!

First, the good news: It’s working on my instance.

Second: Looks like the rails method recognize_path doesn’t play along with rails config.relative_url_root. So my bug wasn’t related with being private at all. Maybe this is @Joey_Tuan case?

So, it’s a subfolder :bug: after all :smile: (I stump on subfolder bugs even when I’m looking somewhere else).

If we want to fix it at Discourse level we need:

diff --git a/lib/onebox/engine/discourse_local_onebox.rb b/lib/onebox/engine/discourse_local_onebox.rb
index 5fd4897..5e3b797 100644
--- a/lib/onebox/engine/discourse_local_onebox.rb
+++ b/lib/onebox/engine/discourse_local_onebox.rb
@@ -14,7 +14,7 @@ module Onebox
         if other.kind_of?(URI)
           uri = other
           begin
-            route = Rails.application.routes.recognize_path(uri.path)
+            route = Rails.application.routes.recognize_path(uri.path.sub(Discourse.base_uri, ""))
             case route[:controller]
             when 'uploads'
               super
@@ -34,7 +34,7 @@ module Onebox
 
       def to_html
         uri = URI::parse(@url)
-        route = Rails.application.routes.recognize_path(uri.path)
+        route = Rails.application.routes.recognize_path(uri.path.sub(Discourse.base_uri, ""))
         url = @url.sub(/[&?]source_topic_id=(\d+)/, "")
         source_topic_id = $1.to_i

And we have local oneboxing at subfolder install working.

5개의 좋아요

Thanks Rafael! Awesome work :+1:

Can you send a PR with your fix? I’ll deploy and verify on private hosted Discourse instances.

3개의 좋아요

https://github.com/discourse/discourse/pull/3991

PS.: Should this be fixed upstream on rails?

4개의 좋아요

Just checked, this issue can still be reproduced on private (login required) hosted instances. :disappointed:

Should be fixed now :banana:

https://github.com/discourse/discourse/commit/a655e4b09259fa5a908416b0add303d7c710ac1f

5개의 좋아요

This topic was automatically closed after 24 hours. New replies are no longer allowed.