[dali_2.3.28] Merge branch 'devel/master'
[platform/core/uifw/dali-adaptor.git] / dali / internal / imaging / common / http-utils.cpp
1 /*
2  * Copyright (c) 2021 Samsung Electronics Co., Ltd.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  *
16  */
17
18 // CLASS HEADER
19 #include <dali/internal/imaging/common/http-utils.h>
20
21 // EXTERNAL INCLUDES
22 #include <cstring>
23
24 namespace Dali
25 {
26 namespace TizenPlatform
27 {
28 namespace
29 {
30 const unsigned int MIN_HTTP_URL_LENGTH = 12; // assume we have a least http://xx/yy
31 const char         HTTP_URL[]          = "http://";
32 const char         HTTPS_URL[]         = "https://";
33 } // namespace
34
35 bool Network::IsHttpUrl(const std::string& path)
36 {
37   if(path.size() <= MIN_HTTP_URL_LENGTH)
38   {
39     return false;
40   }
41
42   if((strncasecmp(path.c_str(), HTTP_URL, sizeof(HTTP_URL) - 1) == 0) ||
43      (strncasecmp(path.c_str(), HTTPS_URL, sizeof(HTTPS_URL) - 1) == 0))
44   {
45     return true;
46   }
47
48   return false;
49 }
50
51 } // namespace TizenPlatform
52
53 } // namespace Dali