Update path replacement function
[platform/core/multimedia/media-server.git] / lib / media-util-noti.c
index 02ee13d..ab15642 100755 (executable)
@@ -198,11 +198,6 @@ int media_db_update_send(int pid, /* mandatory */
        GVariant *message = NULL;
        GDBusConnection *bus = NULL;
        GError *error = NULL;
-       char repl_path[MAX_FILEPATH_LEN] = {0, };
-#if !defined(_USE_SENIOR_MODE)
-       char *tmp_path = NULL;
-       const char *old_path = "/opt/usr/media";
-#endif
 
        bus = g_bus_get_sync(G_BUS_TYPE_SYSTEM, NULL, &error);
        if (!bus) {
@@ -211,29 +206,11 @@ int media_db_update_send(int pid, /* mandatory */
                return MS_MEDIA_ERR_INTERNAL;
        }
 
-       memset(repl_path, 0, sizeof(repl_path));
-#if !defined(_USE_SENIOR_MODE)
-       if (!_USE_TV_PATH) {
-               /* Need uid to change path */
-               if (strncmp(path, "/opt/usr/home", strlen("/opt/usr/home")) == 0) {
-                       tmp_path = strstr(path, MEDIA_CONTENT_PATH);
-                       snprintf(repl_path, sizeof(repl_path), "%s%s", old_path, tmp_path + strlen(MEDIA_CONTENT_PATH));
-               } else {
-                       snprintf(repl_path, sizeof(repl_path), "%s", path);
-               }
-
-               MSAPI_DBG("New path: [%s]", repl_path);
-       } else
-#endif
-       {
-               snprintf(repl_path, sizeof(repl_path), "%s", path);
-       }
-
        if (item == MS_MEDIA_ITEM_FILE) {
                MSAPI_DBG("FILE CHANGED");
                if (uuid != NULL && mime_type != NULL) {
                        /* fill all datas */
-                       message = g_variant_new("(iiissis)", item, pid, update_type, repl_path, uuid, media_type, mime_type);
+                       message = g_variant_new("(iiissis)", item, pid, update_type, path, uuid, media_type, mime_type);
                } else {
                        MSAPI_DBG_ERR("uuid or mime_type is NULL");
                        g_object_unref(bus);
@@ -243,9 +220,9 @@ int media_db_update_send(int pid, /* mandatory */
                MSAPI_DBG("DIRECTORY CHANGED");
                /* fill all datas */
                if (uuid != NULL)
-                       message = g_variant_new("(iiiss)", item, pid, update_type, repl_path, uuid);
+                       message = g_variant_new("(iiiss)", item, pid, update_type, path, uuid);
                else
-                       message = g_variant_new("(iiis)", item, pid, update_type, repl_path);
+                       message = g_variant_new("(iiis)", item, pid, update_type, path);
        } else {
                MSAPI_DBG("this request is wrong");
        }