humhub / app

20 stars 8 forks source link

Humhub instances in a sub-folder are not reconized #119

Closed marc-farre closed 6 months ago

marc-farre commented 11 months ago

Step to reproduce:

You get the message "Your Humhub installation does not exist".

Then:

It works.

PrimozRatej commented 11 months ago

@marc-farre on which level was the manifest.json available and what was the start_url prop. set to in it?

marc-farre commented 11 months ago

@PrimozRatej the bug occurs on all Humhub instances. There are no modifications from the Humhub original source code. So if you are looking at https://github.com/humhub/humhub/blob/master/themes/HumHub/ico/manifest.json, when the Humhub instance is installed on https://my-humhub.com/sub-folder, the manifest.json is in https://my-humhub.com/sub-folder/themes/HumHub/ico/manifest.json

luke- commented 11 months ago

@marc-farre Can you provide a demo in a sub directory?

ks7585 commented 11 months ago

@luke- Sent you a message in Humhub community with an example

ArchBlood commented 11 months ago

Has the following line been modified?

https://github.com/humhub/humhub/blob/master/.htaccess.dist#L8

marc-farre commented 11 months ago

I forgot to mention that the problem was initially reported by @ks7585 on https://community.humhub.com/content/perma?id=271668 Then I tried with my Humhub instance as described in "Step to reproduce" and noticed the same problem.

@ArchBlood good point, but even with RewriteBase well defined, the app doesn't work.

@luke- do you still need a testing Humhub instance or is it OK with @ks7585 one?

luke- commented 11 months ago

@marc-farre ks7585 already provided one, thanks!

smashm commented 11 months ago

App version 1.0.79, still issues with HumHub instance in a subfolder: communtity.for-example.xyz/dashboard -> works for-example.xyz/dashboard -> works for-example.xyz/community/dashboard – doesn’t work

In this case the regular website content (domains root) is shown, not the HumHub instance in the subfolder.

See also: https://community.humhub.com/comment/perma?id=46440

ArchBlood commented 11 months ago

App version 1.0.79, still issues with HumHub instance in a subfolder: communtity.for-example.xyz/dashboard -> works for-example.xyz/dashboard -> works for-example.xyz/community/dashboard – doesn’t work

In this case the regular website content (domains root) is shown, not the HumHub instance in the subfolder.

See also: https://community.humhub.com/comment/perma?id=46440

An alternative method would be creating a static Uri parse() or simply use String uri and not use the current method.

https://api.flutter.dev/flutter/dart-core/Uri/parse.html

PrimozRatej commented 11 months ago

Hey @smashm, the manifest for the sub-folder instance does not exist on for-example.xyz/community/manifest.json but it does exist on for-example.xyz/manifest.json inside the manifest the start URL is https://for-example.xyz/dashboard this url now redirects the app to the https://for-example.xyz/user/auth/login, is this perceived as a correct behavior?

https://github.com/humhub/app/assets/10835179/b552693f-cd71-41d7-8a6c-3f5a993c7f0c

PrimozRatej commented 10 months ago

Hey @smashm, could you please approve my registration on for-example.xyz so I can look into the problem? Thanks! My registration email is primozratej@gmail.com.

PrimozRatej commented 7 months ago

If there is no problem on the issue, I'm closing it for now. We can reopen if needed.

marc-farre commented 7 months ago

@luke- I think we should reopen this issue as it's not fixed.

I've tested by moving a HumHub instance into a test subfolder: image

If I add a / or /dashboard at the end of the URL, this is what I see: image

I've also tries adding the test subfolder here: image

And in the .htaccess file: image

@PrimozRatej if you need a testing instance, I can provide you one.

PrimozRatej commented 7 months ago

Hey @marc-farre, yes please, I would need a testing instance for debugging.

marc-farre commented 7 months ago

@PrimozRatej I've installed this instance for you: https://test.cuzy.app/humhub Push Service and Firebase are configured. You can create an account if needed. If you need an FTP access or an admin account, don't hesitate to ask.

PrimozRatej commented 7 months ago

Hey @marc-farre, I tried to register the account, but I didn't get redirected from the login page, nor did I receive any registration redirect URL in the email.

marc-farre commented 7 months ago

Hey @marc-farre, I tried to register the account, but I didn't get redirected from the login page, nor did I receive any registration redirect URL in the email.

Sorry, outgoing email wasn't configured... It's working now!

PrimozRatej commented 7 months ago

Sorry, outgoing email wasn't configured... It's working now!

Tnx now it's working.

ArchBlood commented 7 months ago

Maybe the following snippets for the opener_controller.dart could help slightly;

    for (var i = uri.pathSegments.length - 1; i >= 0; i--) {
      String urlIn = "${uri.origin}/${uri.pathSegments.getRange(0, i).join('/')}";
      asyncData = await APIProvider.of(ref).request(Manifest.get(i != 0 ? urlIn : uri.origin));
      if (!asyncData!.hasError) break;
    }
    if (uri.pathSegments.isEmpty) {
      asyncData = await APIProvider.of(ref).request(Manifest.get(uri.origin));

Uri assumeUrl(String url) {
    if (url.startsWith("https://") || url.startsWith("http://")) {
      // Assume it's a valid URL
      return Uri.parse(url);
    } else {
      // Check if the URL contains a dot (.) and a slash (/)
      if (url.contains(".") && url.contains("/")) {
        // Assume it's a subdomain
        // Add "https://$url" before the url
        return Uri.parse("https://$url");
      } else {
        // Assume it's a subdirectory
        // Add "https://$url/" before the url
        return Uri.parse("https://$url/");
      }
    }

I've not ran any tests for this just a suggestion for a possible solution.

PrimozRatej commented 6 months ago

In this MR, I altered the approach for locating the manifest.json file. First, all the potential URLs are generated where we presume the manifest should exist, and subsequently, within a loop, attempt to locate it.

I have included the corresponding tests within /app/test/opener_test.dart. If you wish to verify the opener procedure for discovering the manifest, utilize the following code snippet, append the URLs relevant to your use case, and proceed to create a PR. Tests are executed during the app build process.


 /// TEMPLATE: copy this and change it for your use case
test('Check some HumHum instance URLs', () {
  /// [key] represents the opener dialog input string
  /// [value] represents the actual manifest.json location
  Map<String, String> map = {
    "https://test.cuzy.app/humhub": "https://test.cuzy.app/humhub/index.php?r=web%2Fpwa-manifest%2Findex",
    "test.cuzy.app/humhub": "https://test.cuzy.app/humhub/index.php?r=web%2Fpwa-manifest%2Findex",
  };
  testGroupOfURIs(map);
});
luke- commented 6 months ago

@PrimozRatej Thanks!

@marc-farre I've just building v1.0.93 - can you please test against this version?

marc-farre commented 6 months ago

@PrimozRatej thanks! @luke- it's working well now!