simply-static-deploy icon indicating copy to clipboard operation
simply-static-deploy copied to clipboard

Settings enforcer

Open schoenkaft opened this issue 5 years ago • 2 comments

First version without any settings 'normalization', so takes only Simply Static settings and applies them. Testend and seems to work fine, also with modifying stuff in Archiver.

For now this would be used as...

add_filter('grrr_simply_static_deploy_settings', function (array $settings) {
    $basePath = realpath(rtrim(ABSPATH, '/') . '/../app');
    return [
        'destination_url_type' => 'relative',
        'delivery_method' => 'local',
        'local_dir' => $basePath . '/static/',
        'temp_files_dir' => $basePath . '/static-temp/',
        'delete_temp_files' => '1',
        'additional_urls' =>
            rtrim(get_home_url(), '/') . '/sitemap_index.xml' . PHP_EOL .
            rtrim(get_home_url(), '/') . '/main-sitemap.xsl' . PHP_EOL
        ,
        'additional_files' =>
            rtrim(get_template_directory(), '/') . '/assets/build/' . PHP_EOL
        ,
        'urls_to_exclude' => [
            [
                'url' => '/app/uploads',
                'do_not_save' => '1',
                'do_not_follow' => '1',
            ],
            [
                'url' => '/app/themes/skd/assets/build/',
                'do_not_save' => '0',
                'do_not_follow' => '1',
            ],
        ],
    ];
}):

... although I'd prefer to make this a bit more user friendly if we're going forward with this. Any thoughts?

schoenkaft avatar Dec 06 '19 15:12 schoenkaft

... although I'd prefer to make this a bit more user friendly if we're going forward with this. Any thoughts?

I would accept additional_urls and additional_files as arrays, that looks a little more natural.

And this is before having looked at the code, but what does do_not_save imply, literally? I mean, being in urls_to_exclude seems to imply exactly that.

The $settings parameter contains the settings from the CMS (database), right?

harmenjanssen avatar Dec 09 '19 06:12 harmenjanssen

... although I'd prefer to make this a bit more user friendly if we're going forward with this. Any thoughts?

I would accept additional_urls and additional_files as arrays, that looks a little more natural.

Yep, that's what I'm saying. But we would have to think about this a bit more and I think it's not necessary right not to have this feature in the first release.

And this is before having looked at the code, but what does do_not_save imply, literally? I mean, being in urls_to_exclude seems to imply exactly that.

You can exclude URLs from being 'indexed' or you can exclude them from being followed. It replicates the settings UI of the plugin.

The $settings parameter contains the settings from the CMS (database), right?

In this 'example' it does. If we're going to abstract/normalize it, stuff will probably change, so would have to think about it if this would make sense.

schoenkaft avatar Dec 09 '19 13:12 schoenkaft