Spaces:
Build error
Build error
# ===================================================================== # | |
# Copyright (c) 2022 Itz-fork # | |
# # | |
# This program is distributed in the hope that it will be useful, # | |
# but WITHOUT ANY WARRANTY; without even the implied warranty of # | |
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. # | |
# See the GNU General Public License for more details. # | |
# # | |
# You should have received a copy of the GNU General Public License # | |
# along with this program. If not, see <http://www.gnu.org/licenses/> # | |
# ===================================================================== # | |
from . import unzipper_db | |
mode_db = unzipper_db["upload_mode_db"] | |
async def set_upload_mode(user_id, mode): | |
is_exist = await mode_db.find_one({"_id": user_id}) | |
if is_exist: | |
await mode_db.update_one({"_id": user_id}, {"$set": {"mode": mode}}) | |
else: | |
await mode_db.insert_one({"_id": user_id, "mode": mode}) | |
async def get_upload_mode(user_id): | |
umode = await mode_db.find_one({"_id": user_id}) | |
if umode: | |
return umode["mode"] | |
else: | |
return "doc" | |