Posted 6 декабря, 20212 yr comment_175503 Привет, Кто-нибудь знает плагин, который разрешает загрузку только в том случае, если пользователю нравится сообщение о загрузке или он реагирует на него?
7 декабря, 20212 yr comment_175513 This? https://invisioncommunity.com/files/file/8483-bim-hide-link-and-code/
7 декабря, 20212 yr Author comment_175537 11 hours ago, M4FIA_RaGE said: This? https://invisioncommunity.com/files/file/8483-bim-hide-link-and-code/ Something similar, but for downloads, not for links and codes. So, if you head to the Downloads section, find a file and click Download, you'll see a pop-up message telling you to react to the post/file first. Что-то похожее, но для загрузок, а не для ссылок и кодов. Итак, если вы перейдете в раздел «Загрузки», найдете файл и нажмете «Загрузить», вы увидите всплывающее сообщение, в котором вам будет предложено сначала отреагировать на сообщение / файл.
10 февраля, 20222 yr comment_177739 В 07.12.2021 в 20:59, BlackShot сказал: react to the post/file first. Actually, the opposite order is more logical :) I think it's possible, but I don't have time right now.
10 февраля, 20222 yr Author comment_177743 4 minutes ago, Desti said: Actually, the opposite order is more logical :) I think it's possible, but I don't have time right now. How about adapting? Would it take too long? 😬 The plugin I attached already hides links, images, codes, and attachments, but it doesn't affect the Downloads module. (BIM) Hide Link And Code 3.1.0.zip
10 февраля, 20222 yr Author comment_177746 Just now, Desti said: I'll look tomorrow Thank you 💛 Maybe @by_ix could also look into it, he seems good at editing plugins!
10 февраля, 20222 yr comment_177748 BlackShot downloads > front > view > downloadButton заменить всё на это: Спойлер <li> {{if !$file->canDownload() AND !( !$file->container()->can( 'download' ) AND $file->container()->message('npd') )}} {{if !\IPS\Member::loggedIn()->member_id}} <span class="ipsType_light ipsType_blendLinks ipsResponsive_hidePhone ipsResponsive_inline"><i class="fa fa-info-circle"></i> {lang="download_no_permission_guest"}</span> <a href='{url="app=core&module=system&controller=login" seoTemplate="login"}' class='ipsButton ipsButton_light ipsButton_medium ipsButton_fullWidth ipsSpacer_top'>{lang="sign_in_short"}</a> {{else}} <span class="ipsType_light ipsType_blendLinks ipsResponsive_hidePhone ipsResponsive_inline"><i class="fa fa-info-circle"></i> {lang="download_no_permission"}</span> {{endif}} {{else}} {{if $file->reacted()}} <a href='{{if settings.idm_antileech AND !$file->requiresDownloadConfirmation()}}{$file->url('download')->csrf()}{{else}}{$file->url('download')}{{endif}}' class='ipsButton ipsButton_fullWidth ipsButton_large ipsButton_important' {{if $file->requiresDownloadConfirmation()}}data-ipsDialog{{endif}}>{lang="download_now"}</a> {{else}} <span class="ipsType_light ipsType_blendLinks ipsResponsive_hidePhone ipsResponsive_inline"><i class="fa fa-info-circle"></i> Sorry, you need to react to download this file.</span> {{endif}} {{endif}} </li>
10 февраля, 20222 yr Author comment_177750 11 minutes ago, by_ix said: BlackShot downloads > front > view > downloadButton заменить всё на это: Это потрясающе, @by_ix!! Я не думал, что это можно сделать, изменив файл темы. Работает как шарм! Однако два коротких вопроса: Вместо того, чтобы заменять кнопку сообщением, можно ли сохранить кнопку загрузки, но показывать всплывающее окно с предупреждением? Можно ли добавить возможность отвечать на контент, чтобы разрешить скачивание, как в плагине, который я отправил?
10 февраля, 20222 yr comment_177751 35 минут назад, BlackShot сказал: Вместо того, чтобы заменять кнопку сообщением, можно ли сохранить кнопку загрузки, но показывать всплывающее окно с предупреждением? Спойлер <li> {{if !$file->canDownload() AND !( !$file->container()->can( 'download' ) AND $file->container()->message('npd') )}} {{if !\IPS\Member::loggedIn()->member_id}} <span class="ipsType_light ipsType_blendLinks ipsResponsive_hidePhone ipsResponsive_inline"><i class="fa fa-info-circle"></i> {lang="download_no_permission_guest"}</span> <a href='{url="app=core&module=system&controller=login" seoTemplate="login"}' class='ipsButton ipsButton_light ipsButton_medium ipsButton_fullWidth ipsSpacer_top'>{lang="sign_in_short"}</a> {{else}} <span class="ipsType_light ipsType_blendLinks ipsResponsive_hidePhone ipsResponsive_inline"><i class="fa fa-info-circle"></i> {lang="download_no_permission"}</span> {{endif}} {{else}} {{if $file->reacted()}} <a href='{{if settings.idm_antileech AND !$file->requiresDownloadConfirmation()}}{$file->url('download')->csrf()}{{else}}{$file->url('download')}{{endif}}' class='ipsButton ipsButton_fullWidth ipsButton_large ipsButton_important' {{if $file->requiresDownloadConfirmation()}}data-ipsDialog{{endif}}>{lang="download_now"}</a> {{else}} <div id='DownloadReact' class='ipsHide'><div class='ipsPad'><h3><i class="fa fa-info-circle"></i> Sorry, you need to react to download this file.</h3></div></div> <a href='#DownloadReact' class='ipsButton ipsButton_fullWidth ipsButton_large ipsButton_important' data-ipsdialog data-ipsDialog-content='#DownloadReact' data-ipsdialog-title='Attention'>{lang="download_now"}</a> {{endif}} {{endif}} </li> насчёт второго не знаю, возможно и можно, но лучше всё это делать плагином.
10 февраля, 20222 yr comment_177752 BlackShot можно добавить ещё это для отзывов: {{$reviews = \IPS\Db::i()->Select( 'COUNT(*)', 'downloads_reviews', array( array( 'review_mid=?', \IPS\Member::loggedIn()->member_id ), array( 'review_fid=?', $file->id ) ) )->first();}} {{if $file->reacted() OR $reviews > 0 OR \IPS\Member::loggedIn()->isAdmin() OR \IPS\Member::loggedIn()->modPermission()}} но @Desti будет ругаться снова на селект. поэтому, лучше дождись его.
10 февраля, 20222 yr Author comment_177753 7 minutes ago, by_ix said: BlackShot можно добавить ещё это для отзывов: но @Desti будет ругаться снова на селект. поэтому, лучше дождись его. 😂 Я также добавил еще одну вещь: {{$reviews = \IPS\Db::i()->Select( 'COUNT(*)', 'downloads_reviews', array( array( 'review_mid=?', \IPS\Member::loggedIn()->member_id ), array( 'review_fid=?', $file->id ) ) )->first();}} {{if $file->reacted() OR $reviews > 0 OR \IPS\Member::loggedIn()->isAdmin() OR \IPS\Member::loggedIn()->modPermission() OR member.member_id and $file->author()->member_id == \IPS\Member::loggedIn()->member_id}}}}
10 февраля, 20222 yr Author comment_177754 @by_ix _ Это почти идеально! Я просто хочу уменьшить диалог и удалить текст «Предупреждение», но сохранить кнопку «X». Это то, что у меня есть для отладки: {{if $file->reacted() OR member.member_id and $file->author()->member_id == \IPS\Member::loggedIn()->member_id}} <a href='{{if settings.idm_antileech AND !$file->requiresDownloadConfirmation()}}{$file->url('download')->csrf()}{{else}}{$file->url('download')}{{endif}}' class='ipsButton ipsButton_fullWidth ipsButton_large ipsButton_important' {{if $file->requiresDownloadConfirmation()}}data-ipsDialog{{endif}}>{lang="download_now"}</a> {{else}} <div id='downloadReact' class='ipsHide ipsType_center'><i class='fa fa-exclamation-circle ipsType_huge'></i><div id='elDownloadReact' class='ipsPadding:half ipsPos_center'>You need to react to the file before downloading it.<p><a href='{$file->url()}' class='ipsButton ipsButton_large ipsButton_important ipsButton_important' data-action='dialogClose'>Got it</a></p></div></div> <a href='#downloadReact' class='ipsButton ipsButton_fullWidth ipsButton_large ipsButton_important' data-ipsdialog data-ipsDialog-content='#downloadReact'>{lang="download_now"}</a> {{endif}} Я бы хотел что-то такого размера (но кнопка "Х" пропала): Edited 10 февраля, 20222 yr by BlackShot
10 февраля, 20222 yr comment_177755 5 минут назад, BlackShot сказал: но кнопка "Х" пропала data-ipsdialog-title=''
10 февраля, 20222 yr Author comment_177756 12 minutes ago, by_ix said: data-ipsdialog-title='' Я пробовал это раньше, но вместо того, чтобы быть пустым, сверху написано «true». Я обнаружил, что ipsAlert делает его меньше, и на самом деле есть «X», но он плавает на экране за пределами диалогового окна. 😓 Edited 10 февраля, 20222 yr by BlackShot
11 февраля, 20222 yr Author comment_177758 {{if $file->reacted() OR \IPS\Member::loggedIn()->isAdmin() OR \IPS\Member::loggedIn()->modPermission() OR member.member_id and $file->author()->member_id == \IPS\Member::loggedIn()->member_id}} <a href='{{if settings.idm_antileech AND !$file->requiresDownloadConfirmation()}}{$file->url('download')->csrf()}{{else}}{$file->url('download')}{{endif}}' class='ipsButton ipsButton_fullWidth ipsButton_large ipsButton_important' {{if $file->requiresDownloadConfirmation()}}data-ipsDialog{{endif}}>{lang="download_now"}</a> {{else}} <div id='downloadReact' class='ipsHide ipsType_center'><i class='fa fa-exclamation-circle ipsType_huge'></i><p class='ipsType_reset ipsType_light ipsType_large'>{lang="downloadreact_attention"}</p><div id='elDownloadReact' class='ipsPadding:half ipsPos_center'>{lang="downloadreact_warning"}<p>{lang="downloadreact_refresh"}</p><p><a href='{$file->url()}' class='ipsButton ipsButton_large ipsButton_important' data-action='dialogClose'>{lang="downloadreact_ok"}</a></p></div></div> <a href='#downloadReact' class='ipsButton ipsButton_fullWidth ipsButton_large ipsButton_important' data-ipsDialog data-ipsDialog-size='narrow' data-ipsDialog-content='#downloadReact'>{lang="download_now"}</a> {{endif}} Кажется, я наконец понял это! СПАСИБО БОЛЬШОЕ, @by_ix! Всегда поможет и хочет научить нас чему-то! 💛 Было бы неплохо, если бы вы превратили все это в плагин и добавили возможность обнаружения ответов/ответов! Держу пари, это будет популярный плагин! 😄
11 февраля, 20222 yr comment_177759 BlackShot я мимолетно просмотрел код, а что будет если на странице файла просто добавить к ссылке /?do=download&confirm=1 , смогу ли я скачать так файл в обход вашего кода? https://site.com/files/file/{my_file}/?do=download&confirm=1 Edited 11 февраля, 20222 yr by ZIKURIK
11 февраля, 20222 yr Author comment_177761 8 minutes ago, ZIKURIK said: BlackShot я мимолетно просмотрел код, а что будет если на странице файла просто добавить к ссылке /?do=download&confirm=1 , смогу ли я скачать так файл в обход вашего кода? https://site.com/files/file/{my_file}/?do=download&confirm=1 К сожалению, да, но я знаю только самые основы кодирования. Кто-то еще должен был бы изучить это или, предпочтительно, сделать плагин для такого рода функций. Кстати, кредиты идут на @by_ix для этого кода. 2 minutes ago, by_ix said: @ZIKURIKNothing happens. at least for me. В моем случае то, что он сказал, фактически обходит код. 😪
11 февраля, 20222 yr comment_177763 11 hours ago, BlackShot said: How about adapting? Would it take too long? 😬 The plugin I attached already hides links, images, codes, and attachments, but it doesn't affect the Downloads module. (BIM) Hide Link And Code 3.1.0.zip 13.98 kB · 3 downloads Latest version BIM_Hide_Link_And_Code_3.2.2.7z
11 февраля, 20222 yr Author comment_177793 23 hours ago, ZIKURIK said: BlackShot I briefly looked at the code, but what happens if I just add /?do=download&confirm=1 to the link on the file page , can I download the file in this way bypassing your code? Вы знаете, как предотвратить или исправить это? @Desti
12 февраля, 20222 yr Author comment_177795 Вообще-то я только сейчас заметил, что это баг не с кнопкой, а с самим IPS. Несмотря ни на что, он разрешает прямую загрузку, добавляя /?do=download&confirm=1 к URL-адресу. Кто-нибудь знает, как исправить? 4.6.9 Edited 12 февраля, 20222 yr by BlackShot
12 февраля, 20222 yr Author comment_177796 Вот что я сделал, чтобы решить эту проблему: applications\downloads\view.php Заменять: if ( \IPS\Settings::i()->idm_antileech AND !$this->file->requiresDownloadConfirmation() ) С участием: if ( \IPS\Settings::i()->idm_antileech ) Кто-нибудь знает, не испортит ли это что-нибудь? Кажется, теперь это работает. Если бы не было подтверждений, платформа разрешила бы загрузку. @by_ix ZIKURIK @Desti
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.